ProgressDialog constructor

ProgressDialog({
  1. required dynamic context,
  2. bool? useRootNavigator,
})

Implementation

ProgressDialog({required context, bool? useRootNavigator}) {
  this._context = context;
  this._useRootNavigator = useRootNavigator ?? true;
}