toPolicyScopeType method

PolicyScopeType toPolicyScopeType()

Implementation

PolicyScopeType toPolicyScopeType() {
  switch (this) {
    case 'All':
      return PolicyScopeType.all;
    case 'AWS':
      return PolicyScopeType.aws;
    case 'Local':
      return PolicyScopeType.local;
  }
  throw Exception('$this is not known in enum PolicyScopeType');
}