Ask constructor

Ask({
  1. required String by,
  2. required int id,
  3. required String title,
  4. required List<int> kids,
  5. required int descendants,
  6. required String text,
  7. required DateTime time,
  8. required ItemType type,
})

Implementation

Ask({
  required this.by,
  required this.id,
  required this.title,
  required this.kids,
  required this.descendants,
  required this.text,
  required this.time,
  required this.type,
});