toAccountJoinedMethod method
Implementation
AccountJoinedMethod toAccountJoinedMethod() {
switch (this) {
case 'INVITED':
return AccountJoinedMethod.invited;
case 'CREATED':
return AccountJoinedMethod.created;
}
throw Exception('$this is not known in enum AccountJoinedMethod');
}