showProgressbarDialog function

void showProgressbarDialog(
  1. BuildContext context
)

Implementation

void showProgressbarDialog(BuildContext context) {
  showDialog(
      context: context,
      barrierDismissible: false,
      builder: (BuildContext context) {
        return getProgressDialogWidget();
      });
}