Untitled
faisalsalameh
dart
12/22/2022 9:37 AM
388 B
18
Indexable
static Future<bool> get status async {
var connectivityResult = await (Connectivity().checkConnectivity());
if (connectivityResult == ConnectivityResult.wifi ||
connectivityResult == ConnectivityResult.mobile) {
return true;
} else {
return false;
}
}Editor is loading...