FeatureManagerCommand constructor

FeatureManagerCommand({
  1. required String projectPath,
  2. required StateManagement stateManagement,
})

Creates a new FeatureManagerCommand.

Requires the projectPath to the Flutter project and the stateManagement strategy being used.

Implementation

FeatureManagerCommand({
  required this.projectPath,
  required this.stateManagement,
});