Event constructor

Event({
  1. required String title,
  2. required String date,
  3. required String time,
  4. required String location,
  5. required String description,
})

Implementation

Event({
  required this.title,
  required this.date,
  required this.time,
  required this.location,
  required this.description,
});