A / AAAA 记录中的地址列表 / Address values extracted from A and AAAA records.
List<String> get addresses => answers .where( (answer) => answer.type == DnsRecordType.a || answer.type == DnsRecordType.aaaa, ) .map((answer) => answer.value) .toList(growable: false);