copyWithWrapped method
Implementation
WalletTransactionListRequest copyWithWrapped(
{Wrapped<String?>? clientId,
Wrapped<String?>? secret,
Wrapped<String>? walletId,
Wrapped<String?>? cursor,
Wrapped<int?>? count,
Wrapped<WalletTransactionListRequestOptions?>? options}) {
return WalletTransactionListRequest(
clientId: (clientId != null ? clientId.value : this.clientId),
secret: (secret != null ? secret.value : this.secret),
walletId: (walletId != null ? walletId.value : this.walletId),
cursor: (cursor != null ? cursor.value : this.cursor),
count: (count != null ? count.value : this.count),
options: (options != null ? options.value : this.options));
}