ProgressUpdate constructor

const ProgressUpdate({
  1. String? title,
  2. String? subtitle,
  3. double? progress,
  4. bool isCompleted = false,
  5. bool hasError = false,
  6. String? errorMessage,
})

Implementation

const ProgressUpdate({
  this.title,
  this.subtitle,
  this.progress,
  this.isCompleted = false,
  this.hasError = false,
  this.errorMessage,
});