toCmafClientCache method

CmafClientCache toCmafClientCache()

Implementation

CmafClientCache toCmafClientCache() {
  switch (this) {
    case 'DISABLED':
      return CmafClientCache.disabled;
    case 'ENABLED':
      return CmafClientCache.enabled;
  }
  throw Exception('$this is not known in enum CmafClientCache');
}