toValue method
Implementation
String toValue() {
switch (this) {
case ExportStatus.inProgress:
return 'IN_PROGRESS';
case ExportStatus.completed:
return 'COMPLETED';
case ExportStatus.failed:
return 'FAILED';
}
}
String toValue() {
switch (this) {
case ExportStatus.inProgress:
return 'IN_PROGRESS';
case ExportStatus.completed:
return 'COMPLETED';
case ExportStatus.failed:
return 'FAILED';
}
}