toShareMethod method
Implementation
ShareMethod toShareMethod() {
switch (this) {
case 'ORGANIZATIONS':
return ShareMethod.organizations;
case 'HANDSHAKE':
return ShareMethod.handshake;
}
throw Exception('$this is not known in enum ShareMethod');
}