Address constructor

const Address({
  1. required String street,
  2. required String city,
  3. required Geo geo,
})

Implementation

const Address({
  required this.street,
  required this.city,
  required this.geo,
});