Last updated:
0 purchases
finap connectivity helper
Finap Connectivity Helper
Features #
Check whether app is connected to internet or not.
Getting started #
Run this command to install
flutter pub add finap_connectivity_helper
Usage #
isConnected #
Future<bool> isConnected() async {
var connectivityResult = await connectivity.checkConnectivity();
if (connectivityResult == ConnectivityResult.none) {
return false;
} else {
return true;
}
}
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.