toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case H265LookAheadRateControl.high:
      return 'HIGH';
    case H265LookAheadRateControl.low:
      return 'LOW';
    case H265LookAheadRateControl.medium:
      return 'MEDIUM';
  }
}