copyWith method

Implementation

TransactionsRulesListResponse copyWith(
    {List<TransactionsCategoryRule>? rules, String? requestId}) {
  return TransactionsRulesListResponse(
      rules: rules ?? this.rules, requestId: requestId ?? this.requestId);
}