toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case AssignmentStatusType.assigned:
      return 'Assigned';
    case AssignmentStatusType.unassigned:
      return 'Unassigned';
    case AssignmentStatusType.any:
      return 'Any';
  }
}