startTimedCustomEvent static method

Future<String?> startTimedCustomEvent(
  1. String key, [
  2. Object? map
])

EVENTS Calculate duration of event for example time going through form

Implementation

/// Calculate duration of event
/// for example time going through form
static Future<String?> startTimedCustomEvent(String key,
    [Object? map]) async {
  final String? eventId = await _channel
      .invokeMethod('startTimedCustomEvent', {"key": key, "map": map});
  return eventId;
}