supportedArguments constant
A list containing all supported command-line arguments.
This list includes both the short-hand and long-hand forms of the generate argument. It is used internally for argument validation and parsing.
Contains: [shortHandGenerate, longHandGenerate]
Returns:
A List<String> containing ['-g', '--generate']
Implementation
static const List<String> supportedArguments = [
shortHandGenerate,
longHandGenerate
];