class CommentModel { final String title; final String text; final String? imageUrl; CommentModel({ required this.title, required this.text, this.imageUrl, }); }