toHlsOfflineEncrypted method

HlsOfflineEncrypted toHlsOfflineEncrypted()

Implementation

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