copyWithWrapped method

BackgroundGain$Response copyWithWrapped({
  1. Wrapped<int?>? backgroundGain,
})

Implementation

BackgroundGain$Response copyWithWrapped({Wrapped<int?>? backgroundGain}) {
  return BackgroundGain$Response(
      backgroundGain: (backgroundGain != null
          ? backgroundGain.value
          : this.backgroundGain));
}