UnifiedAddressResponse constructor

UnifiedAddressResponse({
  1. required String name,
  2. String? gstNo,
  3. String? panNo,
  4. String? aadharNo,
  5. String? address,
  6. String? village,
  7. String? taluka,
  8. String? district,
  9. String? pinCode,
  10. String? contactNo,
  11. DropDownResponse? stateDropDown,
})

Implementation

UnifiedAddressResponse({
  required this.name,
  this.gstNo,
  this.panNo,
  this.aadharNo,
  this.address,
  this.village,
  this.taluka,
  this.district,
  this.pinCode,
  this.contactNo,
  this.stateDropDown,
});