toAutoMLS3DataType method

AutoMLS3DataType toAutoMLS3DataType()

Implementation

AutoMLS3DataType toAutoMLS3DataType() {
  switch (this) {
    case 'ManifestFile':
      return AutoMLS3DataType.manifestFile;
    case 'S3Prefix':
      return AutoMLS3DataType.s3Prefix;
  }
  throw Exception('$this is not known in enum AutoMLS3DataType');
}