Suggestion constructor

Suggestion({
  1. required String name,
  2. String? namePreferred,
  3. required String mapboxId,
  4. required String featureType,
  5. required String? address,
  6. required String? fullAddress,
  7. required String placeFormatted,
  8. required Context? context,
  9. required String language,
  10. required String? maki,
  11. ExternalIds? externalIds,
  12. List<String>? poiCategory,
  13. List<String>? poiCategoryIds,
  14. List<String>? brand,
  15. List<String>? brandId,
})

Implementation

Suggestion({
  required this.name,
  this.namePreferred,
  required this.mapboxId,
  required this.featureType,
  required this.address,
  required this.fullAddress,
  required this.placeFormatted,
  required this.context,
  required this.language,
  required this.maki,
  this.externalIds,
  this.poiCategory,
  this.poiCategoryIds,
  this.brand,
  this.brandId,
});