HistogramQuery.fromJson constructor

HistogramQuery.fromJson(
  1. Map json_
)

Implementation

HistogramQuery.fromJson(core.Map json_)
    : this(
        histogramQuery: json_.containsKey('histogramQuery')
            ? json_['histogramQuery'] as core.String
            : null,
      );