Address constructor

Address({
  1. required String apartment,
  2. required String area,
  3. required String pincode,
  4. required String landmark,
  5. required String city,
  6. required String state,
  7. required String country,
})

Implementation

Address({
  required this.apartment,
  required this.area,
  required this.pincode,
  required this.landmark,
  required this.city,
  required this.state,
  required this.country,
});