DoHAnswer constructor
DoHAnswer({})
Create DNS answer record
Implementation
DoHAnswer({
required this.name,
required this.ttl,
required this.type,
required this.data,
this.dnsClass = 1,
this.provider,
this.dataLength,
int? validUntil,
}) : validUntil = validUntil ?? (DateTime.now().millisecondsSinceEpoch + (ttl * 1000));