hasNotNode method

bool hasNotNode(
  1. int port,
  2. String did
)

Implementation

bool hasNotNode(int port, String did) {
  if (port == 32320)
    return _notWifiNodes[did] ?? true;
  else
    return _notMobileNodes[did] ?? true;
}