copyWith method

Implementation

TransactionsRulesCreateResponse copyWith(
    {TransactionsCategoryRule? rule, String? requestId}) {
  return TransactionsRulesCreateResponse(
      rule: rule ?? this.rule, requestId: requestId ?? this.requestId);
}