toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final confidenceLevel = this.confidenceLevel;
  final lowerBound = this.lowerBound;
  final ratio = this.ratio;
  final upperBound = this.upperBound;
  return {
    'confidenceLevel': ?confidenceLevel,
    'lowerBound': ?lowerBound,
    'ratio': ?ratio,
    'upperBound': ?upperBound,
  };
}