copyWithWrapped method

TransactionsEnhanceGetRequest copyWithWrapped({
  1. Wrapped<String?>? clientId,
  2. Wrapped<String?>? secret,
  3. Wrapped<String>? accountType,
  4. Wrapped<List<ClientProvidedRawTransaction>>? transactions,
})

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