frontend/frontend-flutter/lib/utils/most_popular_questions.dart (10 lines of code) (raw):
class MostPopularQ {
int count;
String time;
String question;
MostPopularQ(this.question,this.count, this.time);
@override
String toString() {
return "{question = $question : count = $count : time = $time}";
}
}