copyWithWrapped method

ModuleCorrectionEnabled$Response copyWithWrapped({
  1. Wrapped<Object?>? moduleCorrectionEnabled,
})

Implementation

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