getDefaultProfiles method

  1. @override
List<String> getDefaultProfiles()
override

Default Profiles

Returns the list of default profiles used when no profiles are explicitly active. This ensures that applications always have a baseline configuration profile available.

Example

A common default is:

['default']

Behavior

Notes

  • Defaults should always be non-empty to avoid runtime ambiguity.
  • Implementations may allow overriding the defaults.

Implementation

@override
List<String> getDefaultProfiles() => doGetDefaultProfiles().toList();