copyWith method

DealerOrgUpdateV3Body copyWith({
  1. bool? wizardComplete,
  2. String? wizardStep,
  3. String? phoneNumber,
})

Implementation

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