rows property

List<Object?>? rows
getter/setter pair

Rows of query result.

Each row is a JSON object. Example: {sum(message_count): 1, developer_app: "(not set)",…}

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.Object?>? rows;