checkConnectionWeb method

Future<bool> checkConnectionWeb(
  1. ConnectivityConfig config
)

Implementation

Future<bool> checkConnectionWeb(ConnectivityConfig config) async {
  try {
    await get(
      Uri.parse(config.webUrl!),
    );

    return true;
  } on Exception catch (_) {
    return false;
  }
}