getSourceArgs abstract 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
List<String> getSourceArgs();