Location constructor

const Location({
  1. String? street,
  2. String? city,
  3. String? state,
  4. num? zip,
})

Implementation

const Location({
  this.street,
  this.city,
  this.state,
  this.zip,
});