Place constructor

Place(
  1. {String? streetNumber,
  2. String? street,
  3. String? city,
  4. String? zipCode}
)

Implementation

Place({
  this.streetNumber,
  this.street,
  this.city,
  this.zipCode,
});