copyWithWrapped method

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

Implementation

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