hasGenericAddress method

bool hasGenericAddress()

Implementation

bool hasGenericAddress() {
  if (address == null) {
    return false;
  }
  return address!.toGenericAddress().isNotEmpty;
}