toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case ActionHistoryStatus.completed:
      return 'Completed';
    case ActionHistoryStatus.failed:
      return 'Failed';
    case ActionHistoryStatus.unknown:
      return 'Unknown';
  }
}