AggregationInfo.fromJson constructor
AggregationInfo.fromJson(
- Map json_
Implementation
AggregationInfo.fromJson(core.Map json_)
: this(
aggregationCount: json_.containsKey('aggregationCount')
? json_['aggregationCount'] as core.int
: null,
aggregationInterval: json_.containsKey('aggregationInterval')
? json_['aggregationInterval'] as core.String
: null,
aggregationLevel: json_.containsKey('aggregationLevel')
? json_['aggregationLevel'] as core.String
: null,
);