toH265Tier method
Implementation
H265Tier toH265Tier() {
switch (this) {
case 'HIGH':
return H265Tier.high;
case 'MAIN':
return H265Tier.main;
}
throw Exception('$this is not known in enum H265Tier');
}
H265Tier toH265Tier() {
switch (this) {
case 'HIGH':
return H265Tier.high;
case 'MAIN':
return H265Tier.main;
}
throw Exception('$this is not known in enum H265Tier');
}