toValue method
Implementation
String toValue() {
switch (this) {
case DatasetStatus.creating:
return 'CREATING';
case DatasetStatus.active:
return 'ACTIVE';
case DatasetStatus.deleting:
return 'DELETING';
}
}
String toValue() {
switch (this) {
case DatasetStatus.creating:
return 'CREATING';
case DatasetStatus.active:
return 'ACTIVE';
case DatasetStatus.deleting:
return 'DELETING';
}
}