toTargetType method
Implementation
TargetType toTargetType() {
switch (this) {
case 'ACCOUNT':
return TargetType.account;
}
throw Exception('$this is not known in enum TargetType');
}
TargetType toTargetType() {
switch (this) {
case 'ACCOUNT':
return TargetType.account;
}
throw Exception('$this is not known in enum TargetType');
}