copyWithWrapped method

IncomeVerificationPrecheckMilitaryInfo copyWithWrapped({
  1. Wrapped<bool?>? isActiveDuty,
  2. Wrapped<String?>? branch,
})

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));
}