toHlsRedundantManifest method

HlsRedundantManifest toHlsRedundantManifest()

Implementation

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