KwikAddress constructor

const KwikAddress({
  1. required String id,
  2. required String label,
  3. required String addressLine,
  4. required String name,
  5. required String phone,
  6. String? source,
  7. String? email,
  8. String? houseNo,
  9. String? area,
  10. String? landmark,
  11. String? pincode,
  12. String? city,
  13. String? state,
  14. String? country,
})

Implementation

const KwikAddress({
  required this.id,
  required this.label,
  required this.addressLine,
  required this.name,
  required this.phone,
  this.source,
  this.email,
  this.houseNo,
  this.area,
  this.landmark,
  this.pincode,
  this.city,
  this.state,
  this.country,
});