checkDomainExists function

Future<bool> checkDomainExists(
  1. String host
)

Web implementation of DNS lookup.

Returns true by default since native DNS lookups are not supported in web browsers.

Implementation

Future<bool> checkDomainExists(String host) async {
  return true;
}