AggregationResultSum.fromJson constructor

AggregationResultSum.fromJson(
  1. Map json_
)

Implementation

AggregationResultSum.fromJson(core.Map json_)
    : this(
        value: json_.containsKey('value')
            ? (json_['value'] as core.num).toDouble()
            : null,
      );