copyWith method

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

Implementation

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