stop method

Future<void> stop({
  1. Duration gracePeriod = const Duration(seconds: 5),
})

Stops the local proxy and disconnects the tunnel, if either is running.

Implementation

Future<void> stop({Duration gracePeriod = const Duration(seconds: 5)}) {
  throw UnimplementedError('stop() has not been implemented.');
}