copyWith method
Implementation
TransactionsGetRequest copyWith(
{String? clientId,
TransactionsGetRequestOptions? options,
String? accessToken,
String? secret,
DateTime? startDate,
DateTime? endDate}) {
return TransactionsGetRequest(
clientId: clientId ?? this.clientId,
options: options ?? this.options,
accessToken: accessToken ?? this.accessToken,
secret: secret ?? this.secret,
startDate: startDate ?? this.startDate,
endDate: endDate ?? this.endDate);
}