doh 0.0.3
doh: ^0.0.3 copied to clipboard
doh client to resolve dns, include alidns,google dns and cloudflare
example/example.md
import 'package:doh/doh.dart';
void main() {
var x = await DoH.instance.lookup(
"www.apple.com",
DohRequestType.A,
attempt: 2,
);
}