AggregationInfo.fromJson constructor

AggregationInfo.fromJson(
  1. 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,
      );