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