results property

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

In the case of successful invocation of the specified action, the results Struct contains values based on the response of the action invoked.

  1. If the action execution produces any entities as a result, they are returned as an array of Structs with the 'key' being the field name and the 'value' being the value of that field in each result row. { 'results': [{'key': 'value'}, ...] }

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?>>? results;