arguments property
dynamic
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
get arguments => parent == null ? const [] : parent!.arguments;