showHelp function

void showHelp()

Implementation

void showHelp() {
  print('''
${AnsiStyles.green('Holmes CLI')}
Create a Flutter project from your custom template

Usage:
  glopr create <project_name> [-o com.example.org]
  glopr -v | --version
  glopr -h | --help
  glopr doctor

Options:
  -o, --org       Set the bundleId (eg: com.example.app)
  -v, --version   Show CLI version
  -h, --help      Show this help message

Commands:
  create          Generate a new Flutter project based on template
  doctor          Check system requirements
''');
}