value property

String get value

Implementation

String get value {
  switch (this) {
    case ParticipationStatusType.needsAction:
      return "NEEDS-ACTION";
    case ParticipationStatusType.accepted:
      return "ACCEPTED";
    case ParticipationStatusType.declined:
      return "DECLINED";
    case ParticipationStatusType.tentative:
      return "TENTATIVE";
    case ParticipationStatusType.delegated:
      return "DELEGATED";
    case ParticipationStatusType.completed:
      return "COMPLETED";
    case ParticipationStatusType.inProcess:
      return "IN-PROCESS";
  }
}