copyWith method
Implementation
WalletTransactionsListRequest copyWith(
{String? clientId,
String? secret,
String? walletId,
String? cursor,
int? count,
WalletTransactionListRequestOptions? options}) {
return WalletTransactionsListRequest(
clientId: clientId ?? this.clientId,
secret: secret ?? this.secret,
walletId: walletId ?? this.walletId,
cursor: cursor ?? this.cursor,
count: count ?? this.count,
options: options ?? this.options);
}