Dataset class

A dataset represents a projection container for data points.

They do not carry any info of their own. Datasets represent a set of data points from a particular data source. A data point can be found in more than one dataset.

Constructors

Dataset({String? dataSourceId, String? maxEndTimeNs, String? minStartTimeNs, String? nextPageToken, List<DataPoint>? point})
Dataset.fromJson(Map json_)

Properties

dataSourceId String?
The data stream ID of the data source that created the points in this dataset.
getter/setter pair
hashCode int
The hash code for this object.
no setterinherited
maxEndTimeNs String?
The largest end time of all data points in this possibly partial representation of the dataset.
getter/setter pair
minStartTimeNs String?
The smallest start time of all data points in this possibly partial representation of the dataset.
getter/setter pair
nextPageToken String?
This token will be set when a dataset is received in response to a GET request and the dataset is too large to be included in a single response.
getter/setter pair
point List<DataPoint>?
A partial list of data points contained in the dataset, ordered by endTimeNanos.
getter/setter pair
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

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