Events constructor

Events({
  1. required int id,
  2. required String sender,
  3. required String title,
  4. required String description,
  5. required DateTime createdAt,
})

Implementation

Events({required this.id, required this.sender, required this.title,
required this.description, required this.createdAt});