toTimecodeSource method

TimecodeSource toTimecodeSource()

Implementation

TimecodeSource toTimecodeSource() {
  switch (this) {
    case 'EMBEDDED':
      return TimecodeSource.embedded;
    case 'ZEROBASED':
      return TimecodeSource.zerobased;
    case 'SPECIFIEDSTART':
      return TimecodeSource.specifiedstart;
  }
  throw Exception('$this is not known in enum TimecodeSource');
}