startTimer method
Start a timer. The time won't be calculated, and the analytics information sent, until the AnalyticsTimer.finish method is called.
Implementation
@override
AnalyticsTimer startTimer(String variableName,
{String? category, String? label}) {
return AnalyticsTimer(this, variableName, category: category, label: label);
}