Place constructor

Place(
  1. String id,
  2. String placeName,
  3. String categoryName,
  4. CategoryGroup categoryGroupCode,
  5. String categoryGroupName,
  6. String phone,
  7. String addressName,
  8. String roadAddressName,
  9. Uri placeUrl,
  10. int distance,
  11. double x,
  12. double y,
)

Implementation

Place(
    this.id,
    this.placeName,
    this.categoryName,
    this.categoryGroupCode,
    this.categoryGroupName,
    this.phone,
    this.addressName,
    this.roadAddressName,
    this.placeUrl,
    this.distance,
    double x,
    double y)
    : super(x, y);