checkEmpty property

bool checkEmpty

Check if any of the field of this instance other than city and postal code.

Implementation

bool get checkEmpty {
  return houseNumber.isEmpty ||
      road.isEmpty ||
      neighbourhood.isEmpty ||
      suburb.isEmpty ||
      district.isEmpty ||
      state.isEmpty ||
      country.isEmpty ||
      countryCode.isEmpty;
}