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