LoadingScreenHandler constructor
LoadingScreenHandler({
- required BuildContext context,
- String? id,
- Color? color,
- String? text,
- double? progress,
- void refresh()?,
Implementation
LoadingScreenHandler({
required this.context,
this.id,
this.color,
this.text,
double? progress,
void Function()? refresh,
}) {
this.refresh = refresh ?? () {};
this.progress = progress;
}