stop method

Future<void> stop()

Stops this Trace.

Can only be called once and only after start() Data collected is automatically sent to the associated Firebase console after stop() is called. You can confirm that Performance Monitoring results appear in the Firebase console. Results should appear within 12 hours.

Not necessary to use await with this method.

Implementation

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