toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final contentOptions = this.contentOptions;
  final customInfoTypes = this.customInfoTypes;
  final excludeInfoTypes = this.excludeInfoTypes;
  final includeQuote = this.includeQuote;
  final infoTypes = this.infoTypes;
  final limits = this.limits;
  final minLikelihood = this.minLikelihood;
  final minLikelihoodPerInfoType = this.minLikelihoodPerInfoType;
  final ruleSet = this.ruleSet;
  return {
    'contentOptions': ?contentOptions,
    'customInfoTypes': ?customInfoTypes,
    'excludeInfoTypes': ?excludeInfoTypes,
    'includeQuote': ?includeQuote,
    'infoTypes': ?infoTypes,
    'limits': ?limits,
    'minLikelihood': ?minLikelihood,
    'minLikelihoodPerInfoType': ?minLikelihoodPerInfoType,
    'ruleSet': ?ruleSet,
  };
}