toClipFragmentSelectorType method

ClipFragmentSelectorType toClipFragmentSelectorType()

Implementation

ClipFragmentSelectorType toClipFragmentSelectorType() {
  switch (this) {
    case 'PRODUCER_TIMESTAMP':
      return ClipFragmentSelectorType.producerTimestamp;
    case 'SERVER_TIMESTAMP':
      return ClipFragmentSelectorType.serverTimestamp;
  }
  throw Exception('$this is not known in enum ClipFragmentSelectorType');
}