toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final key = this.key;
  final longValueHistogramResult = this.longValueHistogramResult;
  final stringValueHistogramResult = this.stringValueHistogramResult;
  return {
    'key': ?key,
    'longValueHistogramResult': ?longValueHistogramResult,
    'stringValueHistogramResult': ?stringValueHistogramResult,
  };
}