getSourceArgs method
Returns the raw unprocessed arguments passed to the application.
These are the exact strings supplied on the command line.
Example:
print(args.getSourceArgs()); // ['--port=8080', '--debug']
@return a list of raw arguments.
Implementation
@override
List<String> getSourceArgs() => args;