LoadingDialog constructor

const LoadingDialog({
  1. Key? key,
  2. required String message,
})

Creates a LoadingDialog with a centered message and a spinner.

Implementation

const LoadingDialog({Key? key, required this.message}) : super(key: key);