copyWith method

WizardUpdateV2Body copyWith({
  1. String? wizardStep,
  2. bool? wizardComplete,
})

Implementation

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