stopTimedCustomEvent static method

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

End calculation of duration of event for example after completion of a form

Implementation

static Future<void> stopTimedCustomEvent(String key, [Object? map]) async {
  await _channel
      .invokeMethod('stopTimedCustomEvent', {"key": key, "map": map});
}