stop method

Future<void> stop({
  1. int timeoutSeconds = 5,
})

Stops the currently running local proxy, if any.

Waits up to timeoutSeconds for in-flight connections to close gracefully before forcefully closing them.

Implementation

Future<void> stop({int timeoutSeconds = 5}) {
  throw UnimplementedError('stop() has not been implemented.');
}