ProgressDialog constructor

const ProgressDialog({
  1. Key? key,
  2. bool willPop = true,
  3. String? status = 'Please wait...',
})

Implementation

const ProgressDialog(
    {Key? key, this.willPop = true, this.status = 'Please wait...'})
    : super(key: key);