copyWithWrapped method

WalletTransactionListRequest copyWithWrapped({
  1. Wrapped<String?>? clientId,
  2. Wrapped<String?>? secret,
  3. Wrapped<String>? walletId,
  4. Wrapped<String?>? cursor,
  5. Wrapped<int?>? count,
  6. Wrapped<WalletTransactionListRequestOptions?>? options,
})

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));
}