containsProperty method

  1. @override
bool containsProperty(
  1. String name
)
override

Returns true if this property source contains the given name.

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

Implementation

@override
bool containsProperty(String name) {
  for (PropertySource propertySource in _propertySources) {
    if (propertySource.containsProperty(name)) {
      return true;
    }
  }
  return false;
}