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