statusText property
String
get
statusText
Implementation
String get statusText {
return switch (status) {
ChartExportJobStatus.succeeded => 'succeeded',
ChartExportJobStatus.completedWithIssues => 'completed with issues',
ChartExportJobStatus.failed => 'failed',
ChartExportJobStatus.cancelled => 'cancelled',
};
}