doGetActiveProfilesProperty method
Reads Active Profiles Property
Reads the value of the jetleaf.profiles.active
property.
Returns
- A raw string of comma-delimited profile names, or
null
if unset.
Example
final prop = doGetActiveProfilesProperty();
print(prop); // e.g., "dev,staging"
Notes
- Parsing is handled by doGetActiveProfiles.
- Property names are standardized constants.
Implementation
@protected
String? doGetActiveProfilesProperty() => getProperty(ACTIVE_PROFILES_PROPERTY_NAME);