copyWith method

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

Implementation

TransactionsEnhanceGetRequest copyWith(
    {String? clientId,
    String? secret,
    String? accountType,
    List<ClientProvidedRawTransaction>? transactions}) {
  return TransactionsEnhanceGetRequest(
      clientId: clientId ?? this.clientId,
      secret: secret ?? this.secret,
      accountType: accountType ?? this.accountType,
      transactions: transactions ?? this.transactions);
}