WorkStatus constructor

const WorkStatus({
  1. WorkPhase? phase,
  2. required String? jobId,
  3. String? message,
  4. Map<String, dynamic>? more,
  5. String? error,
  6. String? errorStack,
  7. double? percentComplete,
  8. double? completed,
  9. double? total,
})

Implementation

const WorkStatus(
    {this.phase,
    required this.jobId,
    this.message,
    this.more,
    this.error,
    this.errorStack,
    this.percentComplete,
    this.completed,
    this.total});