DistributionUpdate class
A metric value representing a distribution.
Constructors
- DistributionUpdate({SplitInt64? count, Histogram? histogram, SplitInt64? max, SplitInt64? min, SplitInt64? sum, double? sumOfSquares})
- DistributionUpdate.fromJson(Map _json)
Properties
- count ↔ SplitInt64?
-
The count of the number of elements present in the distribution.
getter/setter pair
- hashCode → int
-
The hash code for this object.
no setterinherited
- histogram ↔ Histogram?
-
(Optional) Histogram of value counts for the distribution.
getter/setter pair
- max ↔ SplitInt64?
-
The maximum value present in the distribution.
getter/setter pair
- min ↔ SplitInt64?
-
The minimum value present in the distribution.
getter/setter pair
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
- sum ↔ SplitInt64?
-
Use an int64 since we'd prefer the added precision.
getter/setter pair
- sumOfSquares ↔ double?
-
Use a double since the sum of squares is likely to overflow int64.
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