toH265LookAheadRateControl method
Implementation
H265LookAheadRateControl toH265LookAheadRateControl() {
switch (this) {
case 'HIGH':
return H265LookAheadRateControl.high;
case 'LOW':
return H265LookAheadRateControl.low;
case 'MEDIUM':
return H265LookAheadRateControl.medium;
}
throw Exception('$this is not known in enum H265LookAheadRateControl');
}