enableNetworkBlocking static method

void enableNetworkBlocking()

Enable network blocking for all HTTP requests This will block all network requests including HTTP, HTTPS

Implementation

static void enableNetworkBlocking() {
  HttpOverrides.global = NoNetworkHttpOverrides();
  _isBlocked = true;
}