toHlsIncompleteSegmentBehavior method

HlsIncompleteSegmentBehavior toHlsIncompleteSegmentBehavior()

Implementation

HlsIncompleteSegmentBehavior toHlsIncompleteSegmentBehavior() {
  switch (this) {
    case 'AUTO':
      return HlsIncompleteSegmentBehavior.auto;
    case 'SUPPRESS':
      return HlsIncompleteSegmentBehavior.suppress;
  }
  throw Exception('$this is not known in enum HlsIncompleteSegmentBehavior');
}