CyflCommandRunner constructor

CyflCommandRunner()

Implementation

CyflCommandRunner()
    : super(
        'cy_oem',
        'A CLI tool that helps for oem in Flutter projects.',
      ) {
  argParser.addFlag(
    'version',
    abbr: 'v',
    negatable: false,
  );

  addCommand(RunCommand());
  addCommand(CreateCommand());
}