ReverseGeocodingResponse constructor
const
ReverseGeocodingResponse({
- required String status,
- required String formattedAddress,
- required String city,
- required String state,
- required bool inTrafficZone,
- required bool inOddEvenZone,
- String? routeName,
- String? routeType,
- String? neighbourhood,
- String? place,
- String? municipalityZone,
- String? village,
- String? county,
- 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,
});