ac_inet_connectivity_checker 0.3.0
ac_inet_connectivity_checker: ^0.3.0 copied to clipboard
A simple, cancellable and stateless Internet connectivity checker which do not depend on any protocol
// ignore_for_file: avoid_print
import 'package:ac_inet_connectivity_checker/ac_inet_connectivity_checker.dart';
Future<void> main() async {
final checker = InetConnectivityChecker(
endpoint: const InetEndpoint(host: 'google.com', port: 80),
);
print(await checker.cancelableOperation.value);
}