copyWith method
      
IncomeVerificationPrecheckRequest
copyWith({ 
    
    
- String? clientId,
- String? secret,
- IncomeVerificationPrecheckUser? user,
- IncomeVerificationPrecheckEmployer? employer,
- IncomeVerificationPrecheckPayrollInstitution? payrollInstitution,
- String? transactionsAccessToken,
- List<String> ? transactionsAccessTokens,
- IncomeVerificationPrecheckMilitaryInfo? usMilitaryInfo,
Implementation
IncomeVerificationPrecheckRequest copyWith(
    {String? clientId,
    String? secret,
    IncomeVerificationPrecheckUser? user,
    IncomeVerificationPrecheckEmployer? employer,
    IncomeVerificationPrecheckPayrollInstitution? payrollInstitution,
    String? transactionsAccessToken,
    List<String>? transactionsAccessTokens,
    IncomeVerificationPrecheckMilitaryInfo? usMilitaryInfo}) {
  return IncomeVerificationPrecheckRequest(
      clientId: clientId ?? this.clientId,
      secret: secret ?? this.secret,
      user: user ?? this.user,
      employer: employer ?? this.employer,
      payrollInstitution: payrollInstitution ?? this.payrollInstitution,
      transactionsAccessToken:
          transactionsAccessToken ?? this.transactionsAccessToken,
      transactionsAccessTokens:
          transactionsAccessTokens ?? this.transactionsAccessTokens,
      usMilitaryInfo: usMilitaryInfo ?? this.usMilitaryInfo);
}