bool hasValueForProperty(String propertyName)

Checks whether or not a property has been set in this instances' backingMap.

Source

bool hasValueForProperty(String propertyName) {
  return backingMap.containsKey(propertyName);
}