Address constructor

Address({
  1. required String address,
  2. String? zipCode,
  3. required String contactName,
  4. required String city,
  5. required String country,
})

Implementation

Address({
  required this.address,
  this.zipCode,
  required this.contactName,
  required this.city,
  required this.country,
});