copyWith method
WalletTransactionExecuteRequest
copyWith({
- String? clientId,
- String? secret,
- String? idempotencyKey,
- String? walletId,
- WalletTransactionCounterparty? counterparty,
- WalletTransactionAmount? amount,
- String? reference,
Implementation
WalletTransactionExecuteRequest copyWith(
{String? clientId,
String? secret,
String? idempotencyKey,
String? walletId,
WalletTransactionCounterparty? counterparty,
WalletTransactionAmount? amount,
String? reference}) {
return WalletTransactionExecuteRequest(
clientId: clientId ?? this.clientId,
secret: secret ?? this.secret,
idempotencyKey: idempotencyKey ?? this.idempotencyKey,
walletId: walletId ?? this.walletId,
counterparty: counterparty ?? this.counterparty,
amount: amount ?? this.amount,
reference: reference ?? this.reference);
}