copyWith method
Implementation
AdminDealerOrgUpdateV3Body copyWith(
{String? businessPartnerNo,
String? name,
AddressDTO? address,
String? phoneNumber,
bool? wizardComplete,
String? wizardStep}) {
return AdminDealerOrgUpdateV3Body(
businessPartnerNo: businessPartnerNo ?? this.businessPartnerNo,
name: name ?? this.name,
address: address ?? this.address,
phoneNumber: phoneNumber ?? this.phoneNumber,
wizardComplete: wizardComplete ?? this.wizardComplete,
wizardStep: wizardStep ?? this.wizardStep);
}