containsOption abstract method
Checks whether a given option name is present in the parsed arguments.
Example:
if (args.containsOption('debug')) {
print('Debug mode is enabled');
}
@param name the option name to check. @return true if the option exists, false otherwise.
Implementation
bool containsOption(String name);