TestDNSAnswerResponse constructor

TestDNSAnswerResponse({
  1. required String nameserver,
  2. required String protocol,
  3. required List<String> recordData,
  4. required String recordName,
  5. required RRType recordType,
  6. required String responseCode,
})

Implementation

TestDNSAnswerResponse({
  required this.nameserver,
  required this.protocol,
  required this.recordData,
  required this.recordName,
  required this.recordType,
  required this.responseCode,
});