LoadingDialog constructor

const LoadingDialog({
  1. Key? key,
  2. String message = 'Loading...',
  3. bool showProgress = false,
  4. double? progress,
})

Implementation

const LoadingDialog({
  super.key,
  this.message = 'Loading...',
  this.showProgress = false,
  this.progress,
});