copyWithWrapped method
Implementation
TransactionsEnhanceGetRequest copyWithWrapped(
{Wrapped<String?>? clientId,
Wrapped<String?>? secret,
Wrapped<String>? accountType,
Wrapped<List<ClientProvidedRawTransaction>>? transactions}) {
return TransactionsEnhanceGetRequest(
clientId: (clientId != null ? clientId.value : this.clientId),
secret: (secret != null ? secret.value : this.secret),
accountType:
(accountType != null ? accountType.value : this.accountType),
transactions:
(transactions != null ? transactions.value : this.transactions));
}