The nth space-separated argument (not including the command itself)
String? at(int i) { final idx = i+1; // ignore the command itself. if(idx >= args.length) { return null; } return args[idx]; }