OSMData constructor

const OSMData({
  1. required int placeId,
  2. required String displayName,
  3. required double lat,
  4. required double lon,
  5. AddressModel? address,
  6. List<double>? boundingbox,
})

Implementation

const OSMData({
  required this.placeId,
  required this.displayName,
  required this.lat,
  required this.lon,
  this.address,
  this.boundingbox,
});