toKeyLocation method

KeyLocation toKeyLocation()

Implementation

KeyLocation toKeyLocation() {
  switch (this) {
    case 'URL':
      return KeyLocation.url;
    case 'SECRET_MANAGER':
      return KeyLocation.secretManager;
  }
  throw Exception('$this is not known in enum KeyLocation');
}