dns_client 0.2.1 copy "dns_client: ^0.2.1" to clipboard
dns_client: ^0.2.1 copied to clipboard

Dart implementation of DNS-over-HTTPS.

Dart implementation of DNS-over-HTTPS.

CodeFactor pub.dev license

Usage #

A simple usage example:

import 'package:dns_client/dns_client.dart';

main() async {
  final dns = DnsOverHttps.google();
  var response = await dns.lookup('google.com');
  response.forEach((address) {
    print(address.toString());
  });}
import 'package:dns_client/dns_client.dart';

main() async {
  final dns = DnsOverHttps.cloudflare();
  var response = await dns.lookup('google.com');
  response.forEach((address) {
    print(address.toString());
  });}

Features and bugs #

Please file feature requests and bugs at the issue tracker.

11
likes
90
pub points
81%
popularity

Publisher

unverified uploader

Dart implementation of DNS-over-HTTPS.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

freezed_annotation, http, json_annotation

More

Packages that depend on dns_client