toMp4MoovPlacement method

Mp4MoovPlacement toMp4MoovPlacement()

Implementation

Mp4MoovPlacement toMp4MoovPlacement() {
  switch (this) {
    case 'PROGRESSIVE_DOWNLOAD':
      return Mp4MoovPlacement.progressiveDownload;
    case 'NORMAL':
      return Mp4MoovPlacement.normal;
  }
  throw Exception('$this is not known in enum Mp4MoovPlacement');
}