sendEvent method

Future<void> sendEvent({
  1. required String eventName,
  2. required Map<String, dynamic> data,
})

Sets the current eventName, which specifies the current visual context in your app.

This helps identify the areas in your app where users spend their time

data it allows to add information about the tracks

Implementation

Future<void> sendEvent({
  required String eventName,
  required Map<String, dynamic> data,
}) {
  throw UnimplementedError('sendEvent() has not been implemented.');
}