copyWithWrapped method
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));
}