Address constructor

const Address(
  1. String street,
  2. String city,
  3. Country? country, {
  4. String code = '',
  5. double latitude = 0.0,
  6. double longitude = 0.0,
})

Implementation

const Address(this.street, this.city, this.country,
    {this.code = '', this.latitude = 0.0, this.longitude = 0.0});