getValue method

String getValue()

Converts this enum's values to String.

Implementation

String getValue() => switch (this) {
  ParticipantAccess.read => 'Read',
  ParticipantAccess.readWrite => 'ReadWrite',
};