sendTiming abstract method

Future sendTiming(
  1. String variableName,
  2. int time, {
  3. String? category,
  4. String? label,
})

Sends a Timing hit to Google Analytics. variableName specifies the variable name of the timing. time specifies the user timing value (in milliseconds). category specifies the category of the timing. label specifies the label of the timing.

Implementation

Future sendTiming(String variableName, int time,
    {String? category, String? label});