EventRecord constructor

EventRecord({
  1. required String eventType,
  2. required Map<String, dynamic> payload,
  3. required DateTime time,
  4. int? listenerCount,
})

Implementation

EventRecord({
  required this.eventType,
  required this.payload,
  required this.time,
  this.listenerCount,
});