NiceExportProgress constructor

const NiceExportProgress({
  1. Key? key,
  2. String title = 'Exporting...',
  3. double? progress,
  4. String? status,
  5. bool showCancel = true,
  6. VoidCallback? onCancel,
})

Implementation

const NiceExportProgress({
  super.key,
  this.title = 'Exporting...',
  this.progress,
  this.status,
  this.showCancel = true,
  this.onCancel,
});