QueryResult class

Execution results of the query.

The result is formatted as rows represented by BigQuery compatible [schema]. When pagination is necessary, it will contains the page token to retrieve the results of following pages.

Constructors

QueryResult({String? nextPageToken, List<Map<String, Object?>>? rows, TableSchema? schema, String? totalRows})
QueryResult.fromJson(Map json_)

Properties

hashCode int
The hash code for this object.
no setterinherited
nextPageToken String?
Token to retrieve the next page of the results.
getter/setter pair
rows List<Map<String, Object?>>?
Each row hold a query result in the format of Struct.
getter/setter pair
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
schema TableSchema?
Describes the format of the [rows].
getter/setter pair
totalRows String?
Total rows of the whole query results.
getter/setter pair

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() Map<String, dynamic>
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited