toH265ScanType method
Implementation
H265ScanType toH265ScanType() {
switch (this) {
case 'INTERLACED':
return H265ScanType.interlaced;
case 'PROGRESSIVE':
return H265ScanType.progressive;
}
throw Exception('$this is not known in enum H265ScanType');
}