containsProperty method

bool containsProperty(
  1. String name
)

Returns true if this property source contains the given name.

Should check if the underlying source holds a value for the property.

Implementation

bool containsProperty(String name) => (getProperty(name) != null);