copyWith method
Implementation
TransferListRequest copyWith(
{String? clientId,
String? secret,
DateTime? startDate,
DateTime? endDate,
int? count,
int? offset,
String? originationAccountId,
String? originatorClientId}) {
return TransferListRequest(
clientId: clientId ?? this.clientId,
secret: secret ?? this.secret,
startDate: startDate ?? this.startDate,
endDate: endDate ?? this.endDate,
count: count ?? this.count,
offset: offset ?? this.offset,
originationAccountId: originationAccountId ?? this.originationAccountId,
originatorClientId: originatorClientId ?? this.originatorClientId);
}