Address constructor

const Address({
  1. required String country,
  2. String? fullName,
  3. String? city,
  4. String? postalCode,
  5. String? zone,
  6. String? addressLine1,
  7. String? addressLine2,
})

Implementation

const Address({
  required this.country,
  this.fullName,
  this.city,
  this.postalCode,
  this.zone,
  this.addressLine1,
  this.addressLine2,
});