toMp4MoovPlacement method
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');
}