toCacheType method

CacheType toCacheType()

Implementation

CacheType toCacheType() {
  switch (this) {
    case 'NO_CACHE':
      return CacheType.noCache;
    case 'S3':
      return CacheType.s3;
    case 'LOCAL':
      return CacheType.local;
  }
  throw Exception('$this is not known in enum CacheType');
}