checkConnectionIO method

Future<bool> checkConnectionIO(
  1. ConnectivityConfig config
)

Implementation

Future<bool> checkConnectionIO(ConnectivityConfig config) async {
  try {
    var result = await InternetAddress.lookup(config.url);
    if (result.isNotEmpty && result[0].rawAddress.isNotEmpty) {
      return true;
    }
  } on SocketException catch (_) {
    return false;
  } on Exception catch (_) {
    return false;
  }

  return false;
}