Event constructor

Event({
  1. required String artifact,
  2. String execution = '',
  3. Timestamp? eventTime,
  4. required Event_Type type,
  5. Map<String, String> labels = const {},
})

Implementation

Event({
  required this.artifact,
  this.execution = '',
  this.eventTime,
  required this.type,
  this.labels = const {},
}) : super(fullyQualifiedName);