toEventCategory method

EventCategory toEventCategory()

Implementation

EventCategory toEventCategory() {
  switch (this) {
    case 'insight':
      return EventCategory.insight;
  }
  throw Exception('$this is not known in enum EventCategory');
}