StatisticalValue class

A value with information about its recent changes.

Inheritance
Available Extensions

Constructors

StatisticalValue({required double value, required double previous_value, required double growth_rate_percentage, int? extra, int? clientId})
A value with information about its recent changes

Properties

clientId int?
TDLib client instance identifier, for which the response was received.
read / writeoverride
extra int?
Request identifier. Must be non-zero.
read / writeoverride
growth_rate_percentage double
The growth rate of the value, as a percentage.
read / write
hashCode int
The hash code for this object.
read-onlyinherited
previous_value double
The value for the previous day.
read / write
runtimeType Type
A representation of the runtime type of the object.
read-onlyinherited
value double
The current value.
read / write

Methods

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

Operators

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

Static Methods

fromMap(Map<String, dynamic>? _map) StatisticalValue?
Construct from Map.
override

Constants

CONSTRUCTOR → const String
@type
"statisticalValue"