Place constructor

Place({
  1. required int? placeId,
  2. required String? licence,
  3. required String? osmType,
  4. required int? osmId,
  5. required String? lat,
  6. required String? lon,
  7. required String? className,
  8. required String? type,
  9. required int? placeRank,
  10. required double? importance,
  11. required String? addresstype,
  12. required String? name,
  13. required String? displayName,
  14. required Address? address,
  15. required List<String>? boundingbox,
})

Implementation

Place({
  required this.placeId,
  required this.licence,
  required this.osmType,
  required this.osmId,
  required this.lat,
  required this.lon,
  required this.className,
  required this.type,
  required this.placeRank,
  required this.importance,
  required this.addresstype,
  required this.name,
  required this.displayName,
  required this.address,
  required this.boundingbox,

  // required this.geojson,
});