toEnvironmentFileType method

EnvironmentFileType toEnvironmentFileType()

Implementation

EnvironmentFileType toEnvironmentFileType() {
  switch (this) {
    case 's3':
      return EnvironmentFileType.s3;
  }
  throw Exception('$this is not known in enum EnvironmentFileType');
}