copyWith method
TransactionsEnhanceGetRequest
copyWith({
- String? clientId,
- String? secret,
- String? accountType,
- 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);
}