ZuqCli constructor

ZuqCli()

Implementation

ZuqCli()
  : runner = CommandRunner<int>(
      'zuq',
      'A custom developer CLI for streamling flutter workflows.',
    ) {
  runner.addCommand(CreateCommand());
  runner.addCommand(AddCommand());
  runner.addCommand(DoctorCommand());
}