checkConnectionWeb method
- ConnectivityConfig config
Implementation
Future<bool> checkConnectionWeb(ConnectivityConfig config) async {
try {
await get(
Uri.parse(config.webUrl!),
);
return true;
} on Exception catch (_) {
return false;
}
}