DEFAULT_ADDRESSES property

List<AddressCheckOptions> DEFAULT_ADDRESSES
final
Address Provider Info
1.1.1.1 CloudFlare https://1.1.1.1
1.0.0.1 CloudFlare https://1.1.1.1
8.8.8.8 Google https://developers.google.com/speed/public-dns/
8.8.4.4 Google https://developers.google.com/speed/public-dns/
208.67.222.222 OpenDNS https://use.opendns.com/
208.67.220.220 OpenDNS https://use.opendns.com/

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
    ),
  ],
);