toTargetType method

TargetType toTargetType()

Implementation

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