start method

Future<void> start()

Starts this Trace.

Can only be called once.

Using await with this method is only necessary when accurate timing is relevant.

Implementation

Future<void> start() {
  return _delegate.start();
}