toHlsMode method

HlsMode toHlsMode()

Implementation

HlsMode toHlsMode() {
  switch (this) {
    case 'LIVE':
      return HlsMode.live;
    case 'VOD':
      return HlsMode.vod;
  }
  throw Exception('$this is not known in enum HlsMode');
}