LoadingDialog constructor
const
LoadingDialog({
- Key? key,
Creates a new LoadingDialog instance.
Parameters:
key
- Optional widget key for identification
Example
const LoadingDialog();
// With custom key
const LoadingDialog(key: ValueKey('payment_loading'));
Implementation
const LoadingDialog({Key? key}) : super(key: key);