endTimer static method
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);
}