getConnectivityStatus method
get current internet status
Implementation
Future<bool> getConnectivityStatus() {
return currentContext
.dependOnInheritedWidgetOfExactType<ConnectivityInheritedWidget>()!
.controller!
.getConnectivityStatus();
}