dns_client 0.2.1 dns_client: ^0.2.1 copied to clipboard
Dart implementation of DNS-over-HTTPS.
example/dns_client_example.dart
import 'package:dns_client/dns_client.dart';
void main() async {
final dns = DnsOverHttps.google();
final response = await dns.lookup('google.com');
response.forEach((address) {
print(address.toString());
});
}