projectName property

String get projectName

Gets the project name from YAML configuration.

If not specified in the configuration, defaults to 'morpheme'.

Example:

project_name: my_app

Example usage:

final projectName = config.projectName;

Implementation

String get projectName => this['project_name'] ?? 'morpheme';