toValue method
Implementation
String toValue() {
switch (this) {
case SchemaStatus.available:
return 'AVAILABLE';
case SchemaStatus.pending:
return 'PENDING';
case SchemaStatus.deleting:
return 'DELETING';
}
}
String toValue() {
switch (this) {
case SchemaStatus.available:
return 'AVAILABLE';
case SchemaStatus.pending:
return 'PENDING';
case SchemaStatus.deleting:
return 'DELETING';
}
}