entries property

Map<String, String>? entries
getter/setter pair

Map of (K, V) -> (valid name of the field, new value of the field) E.g., ("age", "60") entry triggers update of field age with a value of 60.

If the field is not present then new entry is added. During update action execution, value strings will be casted to appropriate types.

Implementation

core.Map<core.String, core.String>? entries;