copyWith method

CreditPayrollIncomeGetResponse copyWith({
  1. List<PayrollItem>? items,
  2. PlaidError? error,
  3. String? requestId,
})

Implementation

CreditPayrollIncomeGetResponse copyWith(
    {List<PayrollItem>? items, PlaidError? error, String? requestId}) {
  return CreditPayrollIncomeGetResponse(
      items: items ?? this.items,
      error: error ?? this.error,
      requestId: requestId ?? this.requestId);
}