BrPlaceModel constructor

BrPlaceModel({
  1. String? id,
  2. String? name,
  3. String? description,
  4. String? subtitle,
  5. String? pictureUrl,
  6. int? globalNote,
  7. double? lat,
  8. double? lng,
  9. String? street1,
  10. String? street2,
  11. String? zip,
  12. String? city,
  13. String? state,
  14. String? country,
  15. String? catName,
  16. String? colorCode,
  17. String? colorCode2,
  18. String? catThumbnail,
  19. List<BrPlaceFilterModel>? filters,
})

Implementation

BrPlaceModel(
    {this.id,
    this.name,
    this.description,
    this.subtitle,
    this.pictureUrl,
    this.globalNote,
    this.lat,
    this.lng,
    this.street1,
    this.street2,
    this.zip,
    this.city,
    this.state,
    this.country,
    this.catName,
    this.colorCode,
    this.colorCode2,
    this.catThumbnail,
    this.filters});