toTargetType method

TargetType toTargetType()

Implementation

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