copyWithWrapped method
Implementation
TransactionsRulesRemoveRequest copyWithWrapped(
{Wrapped<String?>? clientId,
Wrapped<String>? accessToken,
Wrapped<String?>? secret,
Wrapped<String>? ruleId}) {
return TransactionsRulesRemoveRequest(
clientId: (clientId != null ? clientId.value : this.clientId),
accessToken:
(accessToken != null ? accessToken.value : this.accessToken),
secret: (secret != null ? secret.value : this.secret),
ruleId: (ruleId != null ? ruleId.value : this.ruleId));
}