rows property
The list contains all rows of the result table.
Each item in the list is an array that contains comma-delimited data
corresponding to a single row of data. The order of the comma-delimited
data fields will match the order of the columns listed in the
columnHeaders
field. If no data is available for the given query, the
rows
element will be omitted from the response. The response for a query
with the day
dimension will not contain rows for the most recent days.
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.List<core.Object?>>? rows;