Notifications constructor

Notifications({
  1. required User user,
  2. required String text,
  3. required String date,
  4. required String category,
  5. required String categorydetail,
  6. required int categorydetailID,
  7. required bool enableButtons,
})

Implementation

Notifications({
  required this.user,
  required this.text,
  required this.date,
  required this.category,
  required this.categorydetail,
  required this.categorydetailID,
  required this.enableButtons,
});