Event constructor

Event({
  1. DateTime? date,
  2. List<String>? eventCategories,
  3. String? message,
  4. String? sourceArn,
  5. String? sourceIdentifier,
  6. SourceType? sourceType,
})

Implementation

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