rows property

List<List<Object?>>? rows
getter/setter pair

Each element in rows is a row whose format is defined by metadata.row_type.

The ith element in each row matches the ith field in metadata.row_type. Elements are encoded based on type as described here.

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;