DnsRecordSet constructor

DnsRecordSet({
  1. List<String>? data,
  2. String? domain,
  3. String? ttl,
  4. String? type,
})

Implementation

DnsRecordSet({
  this.data,
  this.domain,
  this.ttl,
  this.type,
});