copyWith method
Implementation
TransactionsRulesRemoveRequest copyWith(
{String? clientId, String? accessToken, String? secret, String? ruleId}) {
return TransactionsRulesRemoveRequest(
clientId: clientId ?? this.clientId,
accessToken: accessToken ?? this.accessToken,
secret: secret ?? this.secret,
ruleId: ruleId ?? this.ruleId);
}