Event constructor

Event({
  1. Map<String, String>? details,
  2. String? reportTime,
  3. String? type,
})

Implementation

Event({
  this.details,
  this.reportTime,
  this.type,
});