help

open override fun help(context: Context): String

The help text for this command.

Example:

class Command: CliktCommand() {
override fun commandHelp(context: Context): String {
return context.theme.info("This is a command")
}
}