Row class

Report data for each row.

For example if RunReportRequest contains: none "dimensions": [ { "name": "eventName" }, { "name": "countryId" } ], "metrics": [ { "name": "eventCount" } ] One row with 'in_app_purchase' as the eventName, 'JP' as the countryId, and 15 as the eventCount, would be: none "dimensionValues": [ { "value": "in_app_purchase" }, { "value": "JP" } ], "metricValues": [ { "value": "15" } ]

Constructors

Row({List<DimensionValue>? dimensionValues, List<MetricValue>? metricValues})
Row.fromJson(Map _json)

Properties

dimensionValues List<DimensionValue>?
List of requested dimension values.
getter/setter pair
hashCode int
The hash code for this object.
no setterinherited
metricValues List<MetricValue>?
List of requested visible metric values.
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