PlaceModel constructor

PlaceModel({
  1. String? street1,
  2. String? street2,
  3. String? zip,
  4. String? city,
  5. String? state,
  6. String? country,
  7. String? countryCode,
  8. String? informations,
  9. String? phone,
  10. String? phoneCode,
  11. int? placeCatId,
  12. int? arckipel,
  13. double? lng,
  14. double? lat,
  15. String? utcModifier,
  16. int? id,
  17. String? label,
  18. String? uniqueId,
  19. int? isBilling,
})

Implementation

PlaceModel(
    {this.street1,
    this.street2,
    this.zip,
    this.city,
    this.state,
    this.country,
    this.countryCode,
    this.informations,
    this.phone,
    this.phoneCode,
    this.placeCatId,
    this.arckipel,
    this.lng,
    this.lat,
    this.utcModifier,
    this.id,
    this.label,
    this.uniqueId,
    this.isBilling});