EventSpa.custom constructor

EventSpa.custom({
  1. required String eventType,
  2. required Map<String, dynamic> customParam,
})

Use this constructor need create custom event eventType is the event type customParam is the custom parameter

Implementation

EventSpa.custom({
  required String eventType,
  required Map<String, dynamic> customParam,
}) : this(
  eventType: eventType,
  customParam: customParam,
);