toValue method

String toValue()

Implementation

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