copyWith method

IncomeVerificationPrecheckMilitaryInfo copyWith({
  1. bool? isActiveDuty,
  2. String? branch,
})

Implementation

IncomeVerificationPrecheckMilitaryInfo copyWith(
    {bool? isActiveDuty, String? branch}) {
  return IncomeVerificationPrecheckMilitaryInfo(
      isActiveDuty: isActiveDuty ?? this.isActiveDuty,
      branch: branch ?? this.branch);
}