isTorRunning static method

Future<bool?> isTorRunning()

Checks to see if the Tor OP is running (e.g. fully bootstrapped) and open to network connections.

Implementation

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