toTimecodeConfigSource method

TimecodeConfigSource toTimecodeConfigSource()

Implementation

TimecodeConfigSource toTimecodeConfigSource() {
  switch (this) {
    case 'EMBEDDED':
      return TimecodeConfigSource.embedded;
    case 'SYSTEMCLOCK':
      return TimecodeConfigSource.systemclock;
    case 'ZEROBASED':
      return TimecodeConfigSource.zerobased;
  }
  throw Exception('$this is not known in enum TimecodeConfigSource');
}