VPNChecker constructor

VPNChecker()

Implementation

VPNChecker() {
  final connectivity = Connectivity();
  _onConnectionChanged = connectivity.onConnectivityChanged.listen(
    _connectionHandler,
  );
}