doGetDefaultProfilesProperty method

  1. @protected
String? doGetDefaultProfilesProperty()

Reads Default Profiles Property

Reads the value of the jetleaf.profiles.default property.

Returns

  • A raw string of comma-delimited default profile names, or null if unset.

Example

final prop = doGetDefaultProfilesProperty();
print(prop); // e.g., "dev"

Notes

  • Parsing is handled by doGetDefaultProfiles.
  • Defaults provide fallback when no active profiles exist.

Implementation

@protected
String? doGetDefaultProfilesProperty() => getProperty(DEFAULT_PROFILES_PROPERTY_NAME);