AssetCommand constructor

AssetCommand({
  1. AssetOrchestrator? orchestrator,
})

Creates a new AssetCommand instance.

Parameters:

  • orchestrator: Optional custom orchestrator for testing

Implementation

AssetCommand({
  AssetOrchestrator? orchestrator,
}) : _orchestrator = orchestrator ?? AssetOrchestrator() {
  argParser.addOptionMorphemeYaml();
  argParser.addOptionFlavor(defaultsTo: '');
}