isZero property

bool get isZero

Check if this is a zero/invalid address

Implementation

bool get isZero {
  return ip.every((b) => b == 0) || port == 0;
}