end static method

void end()

Implementation

static void end() {
  _stopwatch.stop();
  final duration = _stopwatch.elapsedMilliseconds;
  FlutterDevToolkit.logger.log(
    '🚀 App cold start time: ${duration}ms',
    level: LogLevel.info,
  );
}