isUrlReachable abstract method

Future<bool> isUrlReachable(
  1. String url, {
  2. Duration? timeout,
  3. int? maxAttempts,
})

Check if a specific URL is reachable

Implementation

Future<bool> isUrlReachable(
  String url, {
  Duration? timeout,
  int? maxAttempts,
});