copyWith method
CreditPayrollIncomePrecheckRequest
copyWith({
- String? clientId,
- String? secret,
- String? userToken,
- List<
String> ? accessTokens, - IncomeVerificationPrecheckEmployer? employer,
- IncomeVerificationPrecheckMilitaryInfo? usMilitaryInfo,
- IncomeVerificationPrecheckPayrollInstitution? payrollInstitution,
Implementation
CreditPayrollIncomePrecheckRequest copyWith(
{String? clientId,
String? secret,
String? userToken,
List<String>? accessTokens,
IncomeVerificationPrecheckEmployer? employer,
IncomeVerificationPrecheckMilitaryInfo? usMilitaryInfo,
IncomeVerificationPrecheckPayrollInstitution? payrollInstitution}) {
return CreditPayrollIncomePrecheckRequest(
clientId: clientId ?? this.clientId,
secret: secret ?? this.secret,
userToken: userToken ?? this.userToken,
accessTokens: accessTokens ?? this.accessTokens,
employer: employer ?? this.employer,
usMilitaryInfo: usMilitaryInfo ?? this.usMilitaryInfo,
payrollInstitution: payrollInstitution ?? this.payrollInstitution);
}