value property

String get value

Implementation

String get value {
  switch (this) {
    case StatusType.tentative:
      return "TENTATIVE";
    case StatusType.confirmed:
      return "CONFIRMED";
    case StatusType.cancelled:
      return "CANCELLED";
    case StatusType.needsAction:
      return "NEEDS-ACTION";
    case StatusType.completed:
      return "COMPLETED";
    case StatusType.inProcess:
      return "IN-PROCESS";
    case StatusType.draft:
      return "DRAFT";
    case StatusType.kFinal:
      return "FINAL";
  }
}