startTimer static method

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

Starts a timer at any point in the app in order to measure time metrics for events such as load or response time.

This method needs to be balanced with an endTimer(name, properties) method call.

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

Implementation

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