toContainerFormat method
Implementation
ContainerFormat toContainerFormat() {
switch (this) {
case 'FRAGMENTED_MP4':
return ContainerFormat.fragmentedMp4;
case 'MPEG_TS':
return ContainerFormat.mpegTs;
}
throw Exception('$this is not known in enum ContainerFormat');
}