copyWith method
CreditPayrollIncomeGetResponse
copyWith({
- List<
PayrollItem> ? items, - PlaidError? error,
- 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);
}