results property

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

In the case of successful execution of the query the response contains results returned by the external system.

For example, the result rows of the query are contained in the 'results' Struct list - "results": [ { "field1": "val1", "field2": "val2",.. },.. ] Each Struct row can contain fields any type of like nested Structs or lists.

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;