Brewery constructor

const Brewery({
  1. String? id,
  2. String? name,
  3. String? breweryType,
  4. String? street,
  5. String? address_2,
  6. String? address_3,
  7. String? city,
  8. String? state,
  9. String? countyProvince,
  10. String? postalCode,
  11. String? country,
  12. String? longitude,
  13. String? latitude,
  14. String? phone,
  15. String? websiteUrl,
  16. String? updatedAt,
  17. String? createdAt,
})

Implementation

const Brewery({
  this.id,
  this.name,
  this.breweryType,
  this.street,
  this.address_2,
  this.address_3,
  this.city,
  this.state,
  this.countyProvince,
  this.postalCode,
  this.country,
  this.longitude,
  this.latitude,
  this.phone,
  this.websiteUrl,
  this.updatedAt,
  this.createdAt,
});