CustomProgressDialog constructor

CustomProgressDialog(
  1. BuildContext context, {
  2. Color? backgroundColor,
  3. double? blur,
  4. Function? onCancel,
  5. bool? dismissable,
  6. Function? onDismiss,
  7. Widget? loadingWidget,
  8. DialogTransitionType? dialogTransitionType,
  9. Duration? transitionDuration,
})

Implementation

CustomProgressDialog(
  this.context, {
  this.backgroundColor,
  this.blur,
  this.onCancel,
  this.dismissable,
  this.onDismiss,
  this.loadingWidget,
  this.dialogTransitionType,
  this.transitionDuration,
}) {
  _initProgress();
}