toCmafStreamInfResolution method
Implementation
CmafStreamInfResolution toCmafStreamInfResolution() {
switch (this) {
case 'INCLUDE':
return CmafStreamInfResolution.include;
case 'EXCLUDE':
return CmafStreamInfResolution.exclude;
}
throw Exception('$this is not known in enum CmafStreamInfResolution');
}