isListeningForNetwork method

Future<bool> isListeningForNetwork()

Returns true if the node is actively listening for network connections.

Implementation

Future<bool> isListeningForNetwork() {
  return _makeRPCCall('net_listening');
}