sendEvent method

Future<bool> sendEvent(
  1. String eventType,
  2. String? eventName,
  3. double revenue
)

Send an event with optional revenue parameter

Implementation

Future<bool> sendEvent(String eventType, String? eventName, double revenue) {
  throw UnimplementedError('sendEvent() has not been implemented.');
}