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