Address constructor

Address({
  1. required String tramStop,
  2. required String road,
  3. required String neighbourhood,
  4. required String city,
  5. required String state,
  6. required String postcode,
  7. required String country,
  8. required String countryCode,
})

Implementation

Address({
  required this.tramStop,
  required this.road,
  required this.neighbourhood,
  required this.city,
  required this.state,
  required this.postcode,
  required this.country,
  required this.countryCode,
});