VendorAddress.fromJson constructor
Implementation
factory VendorAddress.fromJson(Map<String, dynamic> json) {
return VendorAddress(
vendorAddressId: json['vendorAddressId'],
vendorAddress: json['vendorAddress'],
country: json['country'],
state: json['state'],
city: json['city'],
postCode: json['postCode'],
businessLatitude: json['businessLatitude'],
businessLongitude: json['businessLongitude'],
isPublished: json['isPublished'],
);
}