Event constructor

const Event({
  1. required String eventType,
  2. required String from,
  3. required DateTime timestamp,
  4. required Map<String, dynamic> event,
})

Event constructor

Implementation

const Event({
  required this.eventType,
  required this.from,
  required this.timestamp,
  required this.event,
});