copyWith method
Implementation
IncomeVerificationPaystubsGetRequest copyWith(
{String? clientId, String? secret, String? incomeVerificationId}) {
return IncomeVerificationPaystubsGetRequest(
clientId: clientId ?? this.clientId,
secret: secret ?? this.secret,
incomeVerificationId:
incomeVerificationId ?? this.incomeVerificationId);
}