copyWithWrapped method

WizardUpdateV2Body copyWithWrapped({
  1. Wrapped<String?>? wizardStep,
  2. Wrapped<bool?>? wizardComplete,
})

Implementation

WizardUpdateV2Body copyWithWrapped(
    {Wrapped<String?>? wizardStep, Wrapped<bool?>? wizardComplete}) {
  return WizardUpdateV2Body(
      wizardStep: (wizardStep != null ? wizardStep.value : this.wizardStep),
      wizardComplete: (wizardComplete != null
          ? wizardComplete.value
          : this.wizardComplete));
}