StartProfiling method

Profiler StartProfiling()
Start recording ink profiling information during calls to Continue on Story. Return a Profiler instance that you can request a report from when you're finished.

Implementation

Profiler StartProfiling() {
  ifAsyncWeCant('start profiling');
  _profiler = Profiler();
  return _profiler!;
}