Option constructor

Option({
  1. required String title,
  2. required int? votesCount,
})

Implementation

Option({
  required this.title,
  required this.votesCount,
});