copyWith method
Implementation
FinancialTransactionResponse copyWith({
String? totalItems,
List<Items>? items,
List<TransactionsResponse>? transactions,
Total? total,
}) {
return FinancialTransactionResponse(
totalItems: totalItems ?? this.totalItems,
items: items ?? this.items,
transactions: transactions ?? this.transactions,
total: total ?? this.total,
);
}