EventType constructor

EventType({
  1. EventTypeCategory? category,
  2. String? code,
  3. String? service,
})

Implementation

EventType({
  this.category,
  this.code,
  this.service,
});