packageName property

AFConfigurationItemOption packageName
final

The name of the package for the app.

e.g, the statement

import 'package:mypackagename/id.dart';

should import the id file from your application.

Implementation

static final packageName = AFConfigurationItemOption(
  libraryId: AFUILibraryID.id,
  name: "package-name",
  help: "The name of your application package",
  validContexts: AFConfigurationItem.validContextsNewProjectAndConfig,
  ordinal: 130.0,
  minChars: 4,
  maxChars: 40,
  options: AFConfigurationItemOption.optionLowercase | AFConfigurationItemOption.optionIdentifier
);