Comment constructor

Comment({
  1. required int id,
  2. required String text,
  3. required String by,
  4. required String type,
  5. required int parent,
  6. required int time,
  7. required bool dead,
  8. required bool deleted,
  9. required List kids,
})

Implementation

Comment({
  required this.id,
  required this.text,
  required this.by,
  required this.type,
  required this.parent,
  required this.time,
  required this.dead,
  required this.deleted,
  required this.kids,
});