arguments property

List<Map<String, Object>>? arguments
getter/setter pair

Collection of all external inputs that influenced the build on top of recipe.definedInMaterial and recipe.entryPoint.

For example, if the recipe type were "make", then this might be the flags passed to make aside from the target, which is captured in recipe.entryPoint. Since the arguments field can greatly vary in structure, depending on the builder and recipe type, this is of form "Any".

The values for Object must be JSON objects. It can consist of num, String, bool and null as well as Map and List values.

Implementation

core.List<core.Map<core.String, core.Object>>? arguments;