copyWith method
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?,
);