ProgressDialog<T> constructor

const ProgressDialog<T>({
  1. Key? key,
  2. String? title,
  3. String? content,
  4. String? confirmationButtonLabel,
  5. String? cancelButtonLabel,
  6. Future<T?> confirmButtonCallback()?,
  7. AdaptiveProgressDialogStyle? adaptiveProgressDialogStyle,
})

Implementation

const ProgressDialog({
  super.key,
  this.title,
  this.content,
  this.confirmationButtonLabel,
  this.cancelButtonLabel,
  this.confirmButtonCallback,
  this.adaptiveProgressDialogStyle,
});