AddressModel constructor

AddressModel({
  1. required String street,
  2. required String number,
  3. String? additionalInformation,
  4. required String county,
  5. required String city,
  6. required String state,
  7. String? country,
  8. required String zipcode,
  9. String? reference,
})

Implementation

AddressModel({
  required this.street,
  required this.number,
  this.additionalInformation,
  required this.county,
  required this.city,
  required this.state,
  this.country,
  required this.zipcode,
  this.reference,
});