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