argument method
Returns the positional argument at index (0-based), or null if
fewer positional arguments were provided.
final name = argument(0) ?? 'default';
Implementation
String? argument(int index) {
final args = argResults!.rest;
return index < args.length ? args[index] : null;
}