copyWithWrapped method
Implementation
IncomeVerificationPrecheckMilitaryInfo copyWithWrapped(
{Wrapped<bool?>? isActiveDuty, Wrapped<String?>? branch}) {
return IncomeVerificationPrecheckMilitaryInfo(
isActiveDuty:
(isActiveDuty != null ? isActiveDuty.value : this.isActiveDuty),
branch: (branch != null ? branch.value : this.branch));
}