Meta constructor

Meta({
  1. required String id,
  2. required String title,
  3. required String type,
  4. double? score = 0,
  5. bool? group = false,
})

Implementation

Meta({required this.id, required this.title, required this.type, this.score = 0, this.group=false});