Address constructor

Address({
  1. Country? country,
  2. required String addressLine1,
  3. required String addressLine2,
  4. String? city,
  5. String? province,
})

Implementation

Address({
  this.country,
  required this.addressLine1,
  required this.addressLine2,
  this.city,
  this.province,
});