toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final addressComplete = this.addressComplete;
  final geocodeGranularity = this.geocodeGranularity;
  final hasInferredComponents = this.hasInferredComponents;
  final hasReplacedComponents = this.hasReplacedComponents;
  final hasSpellCorrectedComponents = this.hasSpellCorrectedComponents;
  final hasUnconfirmedComponents = this.hasUnconfirmedComponents;
  final inputGranularity = this.inputGranularity;
  final possibleNextAction = this.possibleNextAction;
  final validationGranularity = this.validationGranularity;
  return {
    'addressComplete': ?addressComplete,
    'geocodeGranularity': ?geocodeGranularity,
    'hasInferredComponents': ?hasInferredComponents,
    'hasReplacedComponents': ?hasReplacedComponents,
    'hasSpellCorrectedComponents': ?hasSpellCorrectedComponents,
    'hasUnconfirmedComponents': ?hasUnconfirmedComponents,
    'inputGranularity': ?inputGranularity,
    'possibleNextAction': ?possibleNextAction,
    'validationGranularity': ?validationGranularity,
  };
}