start static method
Starts the benchmark timer.
isOutbound indicates if this is an outbound call (true) or inbound (false).
Implementation
static void start({bool isOutbound = false}) {
_totalTimer.reset();
_milestones.clear();
_isFirstCandidate = true;
_isOutbound = isOutbound;
_totalTimer.start();
}