toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case TimecodeConfigSource.embedded:
      return 'EMBEDDED';
    case TimecodeConfigSource.systemclock:
      return 'SYSTEMCLOCK';
    case TimecodeConfigSource.zerobased:
      return 'ZEROBASED';
  }
}