stopTor static method

Future<bool?> stopTor()

Kills the Tor OP Process. Once you have called this method nothing is going to work until you either call startTor.

Implementation

static Future<bool?> stopTor() async {
  return _channel.invokeMethod<bool>('stopTor');
}