Event constructor

Event({
  1. DateTime? date,
  2. String? message,
  3. String? sourceIdentifier,
  4. SourceType? sourceType,
})

Implementation

Event({
  this.date,
  this.message,
  this.sourceIdentifier,
  this.sourceType,
});