getValue method
Converts this enum's values to String.
Implementation
String getValue() => switch (this) {
ParticipantAccess.read => 'Read',
ParticipantAccess.readWrite => 'ReadWrite',
};
Converts this enum's values to String.
String getValue() => switch (this) {
ParticipantAccess.read => 'Read',
ParticipantAccess.readWrite => 'ReadWrite',
};