start static method

void start({
  1. bool isOutbound = false,
})

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();
}