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