Untitled
unknown
dart
4 years ago
463 B
5
Indexable
if (Constant.connectionCheck) {
DataConnectionChecker().hasConnection.then((value) {
if (value) {
//todo
} else {
Constant.connectionCheck = false;
setState(() {});
}
});
} else {
Constant.connectionCheck = false;
setState(() {});
}Editor is loading...