hasMulticastAddress property

bool get hasMulticastAddress

Checks whether the host of this Uri is a multicast InternetAddress.

Implementation

bool get hasMulticastAddress {
  return InternetAddress.tryParse(host)?.isMulticast ?? false;
}