toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final attributedItems = this.attributedItems;
  final outlierScore = this.outlierScore;
  final outlierThreshold = this.outlierThreshold;
  final queryType = this.queryType;
  return {
    'attributedItems': ?attributedItems,
    'outlierScore': ?outlierScore,
    'outlierThreshold': ?outlierThreshold,
    'queryType': ?queryType,
  };
}