toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final estimatedPrevalence = this.estimatedPrevalence;
  final excludedFromAnalysis = this.excludedFromAnalysis;
  final infoType = this.infoType;
  return {
    'estimatedPrevalence': ?estimatedPrevalence,
    'excludedFromAnalysis': ?excludedFromAnalysis,
    'infoType': ?infoType,
  };
}