copyWithWrapped method

ApplyToSaturation$Response copyWithWrapped({
  1. Wrapped<Object?>? applyToSaturation,
})

Implementation

ApplyToSaturation$Response copyWithWrapped(
    {Wrapped<Object?>? applyToSaturation}) {
  return ApplyToSaturation$Response(
      applyToSaturation: (applyToSaturation != null
          ? applyToSaturation.value
          : this.applyToSaturation));
}