Place constructor

Place({
  1. int? id,
  2. String? street1,
  3. String? zip,
  4. String? city,
  5. String? state,
  6. String? country,
  7. dynamic countryCode,
  8. String? phone,
  9. double? lat,
  10. double? lng,
})

Implementation

Place(
    {this.id,
    this.street1,
    this.zip,
    this.city,
    this.state,
    this.country,
    this.countryCode,
    this.phone,
    this.lat,
    this.lng});