getSourceArgs abstract method

List<String> getSourceArgs()

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();