appNamespace property
A two or three character value which is used as the namespace for app-specific commands, and also the prefix on certain app-specific classs names.
For example, if the AppNamespace is ab, then the widget ID container class will be named ABWidgetID, and a custom command called fixupdb will be ab:fixupdb.
Implementation
static final appNamespace = AFConfigurationItemOption(
libraryId: AFUILibraryID.id,
name: "app-namespace",
help: "A short identifier which is unique to your app, many files and classes are prefixed with these characters, so changing it later is not advised",
validContexts: AFConfigurationItem.validContextsNewProjectAndConfig,
ordinal: 120.0,
minChars: 2,
maxChars: 5,
options: AFConfigurationItemOption.optionLowercase | AFConfigurationItemOption.optionIdentifier
);