copyWith method

TransactionsRulesRemoveRequest copyWith({
  1. String? clientId,
  2. String? accessToken,
  3. String? secret,
  4. String? ruleId,
})

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