doGetActiveProfilesProperty method

  1. @protected
String? doGetActiveProfilesProperty()

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

Implementation

@protected
String? doGetActiveProfilesProperty() => getProperty(ACTIVE_PROFILES_PROPERTY_NAME);