BuyerDetailInfo.fromJson constructor
BuyerDetailInfo.fromJson(
- Map<String, dynamic> json
)
Implementation
BuyerDetailInfo.fromJson(Map<String, dynamic> json) {
profile = json['profile'];
shippingAddress = json['shippingAddress'];
billingAddress = json['billingAddress'];
companyAddress = json['companyAddress'];
taxCode = json['taxCode'];
currencyCode = json['currencyCode'];
account = json['account'];
customerCode = json['customerCode'];
regionName = json['regionName'];
billToPartyDetails = json['billToPartyDetails'];
soldToPartyDetails = json['soldToPartyDetails'];
payToPartyDetails = json['payToPartyDetails'];
addressDetails = json['addressDetails'];
soldByPartyDetails = json['soldByPartyDetails'];
sellerPartyDetails = json['sellerPartyDetails'];
vatable = json['vatable'];
invoiceType = json['invoiceType'];
withHeldTaxPercentage = json['withHeldTaxPercentage'];
withHeldTaxRequired = json['withHeldTaxRequired'];
}