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