value property

String get value

Implementation

String get value {
  switch (this) {
    case ParticipationRoleType.chair:
      return "CHAIR";
    case ParticipationRoleType.reqParticipant:
      return "REQ-PARTICIPANT";
    case ParticipationRoleType.optParticipant:
      return "OPT-PARTICIPANT";
    case ParticipationRoleType.nonParticipant:
      return "NON-PARTICIPANT";
  }
}