Address constructor

Address({
  1. required String addressLine1,
  2. String? addressLine2,
  3. String? addressLine3,
  4. String? county,
  5. String? deliveryPointIdentifier,
  6. required String postcode,
  7. String? town,
})

Implementation

Address({
  required this.addressLine1,
  this.addressLine2,
  this.addressLine3,
  this.county,
  this.deliveryPointIdentifier,
  required this.postcode,
  this.town,
});