hasValueForProperty method

bool hasValueForProperty(
  1. String propertyName
)

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

Implementation

bool hasValueForProperty(String propertyName) {
  return backing.contents!.containsKey(propertyName);
}