import 'dart:io'; import 'package:equatable/equatable.dart'; abstract class CommentEvent extends Equatable { const CommentEvent(); @override List get props => []; } class SubmitComment extends CommentEvent { final String discountId; final String text; final double score; final List images; const SubmitComment({ required this.discountId, required this.text, required this.score, required this.images, }); @override List get props => [discountId, text, score, images]; }