copyWith method
Implementation
DealerOrgUpdateV3Body copyWith(
{bool? wizardComplete, String? wizardStep, String? phoneNumber}) {
return DealerOrgUpdateV3Body(
wizardComplete: wizardComplete ?? this.wizardComplete,
wizardStep: wizardStep ?? this.wizardStep,
phoneNumber: phoneNumber ?? this.phoneNumber);
}