copyWith method

IncomeVerificationPaystubsGetRequest copyWith({
  1. String? clientId,
  2. String? secret,
  3. String? incomeVerificationId,
  4. String? accessToken,
})

Implementation

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