Event constructor
Event({
- required String action,
- required EventCategory? category,
- String? label,
- int? value,
Implementation
Event({required this.action, required this.category, this.label, this.value})
: super() {
type = HitCategory.EVENT;
}