label property

String get label

Implementation

String get label => switch (this) {
  pending => 'Pending',
  queued => 'Queued',
  running => 'Running',
  completed => 'Completed',
  failed => 'Failed',
  cancelled => 'Cancelled',
  timedOut => 'Timed Out',
};