arguments property

List<String> get arguments

We find the arguments from the top-level MainMessage and use those to do variable substitutions. MainMessage overrides this to return the actual arguments.

Implementation

List<String> get arguments => parent == null ? const [] : parent!.arguments;