endTimer static method

Future<void> endTimer(
  1. String name,
  2. Map<String, String> properties
)

Ends a previously started timer.

This method will calculate the complete time from the start of the event. The method acts as a balanced call to startTimer(name, properties).

@param name A timer name. The timer name can have up to 250 characters. @param properties A property map.

Implementation

static Future<void> endTimer(String name, Map<String, String> properties) {
  return DevRevSDKPlatform.instance.endTimer(name, properties);
}