toHlsIvInManifest method

HlsIvInManifest toHlsIvInManifest()

Implementation

HlsIvInManifest toHlsIvInManifest() {
  switch (this) {
    case 'EXCLUDE':
      return HlsIvInManifest.exclude;
    case 'INCLUDE':
      return HlsIvInManifest.include;
  }
  throw Exception('$this is not known in enum HlsIvInManifest');
}