CustomEvent constructor

CustomEvent(
  1. String name, {
  2. Map<String, dynamic>? attributes,
  3. EventCategory category = EventCategory.engagement,
})

Implementation

CustomEvent(this.name,
    {this.attributes, this.category = EventCategory.engagement})
    : _objType = 'CustomEvent';