toFmp4TimedMetadataBehavior method

Fmp4TimedMetadataBehavior toFmp4TimedMetadataBehavior()

Implementation

Fmp4TimedMetadataBehavior toFmp4TimedMetadataBehavior() {
  switch (this) {
    case 'NO_PASSTHROUGH':
      return Fmp4TimedMetadataBehavior.noPassthrough;
    case 'PASSTHROUGH':
      return Fmp4TimedMetadataBehavior.passthrough;
  }
  throw Exception('$this is not known in enum Fmp4TimedMetadataBehavior');
}