DEFAULT_ADDRESSES property
Implementation
static final List<AddressCheckOptions> DEFAULT_ADDRESSES =
List<AddressCheckOptions>.unmodifiable(
<AddressCheckOptions>[
AddressCheckOptions(
InternetAddress(
'1.1.1.1', // CloudFlare
type: InternetAddressType.IPv4,
),
),
AddressCheckOptions(
InternetAddress(
'2606:4700:4700::1111', // CloudFlare
type: InternetAddressType.IPv6,
),
),
AddressCheckOptions(
InternetAddress(
'8.8.4.4', // Google
type: InternetAddressType.IPv4,
),
),
AddressCheckOptions(
InternetAddress(
'2001:4860:4860::8888', // Google
type: InternetAddressType.IPv6,
),
),
AddressCheckOptions(
InternetAddress(
'208.67.222.222', // OpenDNS
type: InternetAddressType.IPv4,
), // OpenDNS
),
AddressCheckOptions(
InternetAddress(
'2620:0:ccc::2', // OpenDNS
type: InternetAddressType.IPv6,
), // OpenDNS
),
],
);