VendorAddress constructor

VendorAddress({
  1. int? vendorAddressId,
  2. String? vendorAddress,
  3. String? country,
  4. String? state,
  5. String? city,
  6. String? postCode,
  7. String? businessLatitude,
  8. String? businessLongitude,
  9. String? isPublished,
})

Implementation

VendorAddress({
  this.vendorAddressId,
  this.vendorAddress,
  this.country,
  this.state,
  this.city,
  this.postCode,
  this.businessLatitude,
  this.businessLongitude,
  this.isPublished,
});