addPropertySource method

void addPropertySource(
  1. PropertySource propertySource
)

Adds the given propertySource to the end of the composite chain.

This means it will be consulted after all previously added sources.

Implementation

void addPropertySource(PropertySource propertySource) {
  _propertySources.add(propertySource);
}