onNetworkStateChanged method
Handle notification raised by library when detected network changes
Implementation
void onNetworkStateChanged(String name, NetState state) {
_logs?.print('onNetworkStateChanged name:$name $state');
_networkLost = (state==NetState.lost);
notifyListeners();
}