copyWithWrapped method

SeamCorrectionEnabled$Response copyWithWrapped({
  1. Wrapped<Object?>? seamCorrectionEnabled,
})

Implementation

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