copyWith method

AudioInputNoiseReduction copyWith({
  1. Object? type = unsetCopyWithValue,
})

Returns a copy of this AudioInputNoiseReduction with the given fields replaced. Pass null for type to clear the existing value.

Implementation

AudioInputNoiseReduction copyWith({Object? type = unsetCopyWithValue}) =>
    AudioInputNoiseReduction(
      type: identical(type, unsetCopyWithValue)
          ? this.type
          : type as NoiseReductionType?,
    );