ReverseGeocodingResponse constructor

const ReverseGeocodingResponse({
  1. required String status,
  2. required String formattedAddress,
  3. required String city,
  4. required String state,
  5. required bool inTrafficZone,
  6. required bool inOddEvenZone,
  7. String? routeName,
  8. String? routeType,
  9. String? neighbourhood,
  10. String? place,
  11. String? municipalityZone,
  12. String? village,
  13. String? county,
  14. String? district,
})

Creates a ReverseGeocodingResponse instance.

Implementation

const ReverseGeocodingResponse({
  required this.status,
  required this.formattedAddress,
  required this.city,
  required this.state,
  required this.inTrafficZone,
  required this.inOddEvenZone,
  this.routeName,
  this.routeType,
  this.neighbourhood,
  this.place,
  this.municipalityZone,
  this.village,
  this.county,
  this.district,
});