TProgressDialog constructor

const TProgressDialog({
  1. Key? key,
  2. required TProgressManager manager,
  3. Widget? title,
  4. void onError(
    1. String message
    )?,
  5. VoidCallback? onSuccess,
})

Implementation

const TProgressDialog({
  super.key,
  required this.manager,
  this.title,
  this.onError,
  this.onSuccess,
});