start method

Future<void> start({
  1. required TracingSettings settings,
})

Starts tracing all WebViews. Depending on the trace mode in trace config specifies how the trace events are recorded. For tracing modes TracingMode.RECORD_UNTIL_FULL and TracingMode.RECORD_CONTINUOUSLY the events are recorded using an internal buffer and flushed to the outputStream when stop is called.

Officially Supported Platforms/Implementations:

Implementation

Future<void> start({required TracingSettings settings}) {
  throw UnimplementedError(
      'start is not implemented on the current platform');
}