FMRawData constructor

const FMRawData({
  1. required double lat,
  2. required double lng,
  3. required String type,
  4. required String name,
  5. required String osmId,
  6. required String osmType,
  7. required String placeId,
  8. required String license,
  9. required FMGeoJsonModel? geoJson,
  10. required FMAddress? address,
  11. required String category,
  12. required String placeRank,
  13. required String importance,
  14. required String addressType,
  15. required String displayName,
  16. required List<String> boundingBox,
})

Implementation

const FMRawData({
  required this.lat,
  required this.lng,
  required this.type,
  required this.name,
  required this.osmId,
  required this.osmType,
  required this.placeId,
  required this.license,
  required this.geoJson,
  required this.address,
  required this.category,
  required this.placeRank,
  required this.importance,
  required this.addressType,
  required this.displayName,
  required this.boundingBox,
});