LoadingScreenHandler constructor

LoadingScreenHandler({
  1. required BuildContext context,
  2. String? id,
  3. Color? color,
  4. String? text,
  5. double? progress,
  6. void refresh()?,
})

Implementation

LoadingScreenHandler({
  required this.context,
  this.id,
  this.color,
  this.text,
  double? progress,
  void Function()? refresh,
}) {
  this.refresh = refresh ?? () {};
  this.progress = progress;
}