toValue method
Implementation
String toValue() {
switch (this) {
case RadiusStatus.creating:
return 'Creating';
case RadiusStatus.completed:
return 'Completed';
case RadiusStatus.failed:
return 'Failed';
}
}
String toValue() {
switch (this) {
case RadiusStatus.creating:
return 'Creating';
case RadiusStatus.completed:
return 'Completed';
case RadiusStatus.failed:
return 'Failed';
}
}