SaleTaxes.fromJson constructor

SaleTaxes.fromJson(
  1. Map<String, dynamic> json
)

Implementation

SaleTaxes.fromJson(Map<String, dynamic> json) {
  taxId = json['taxId'];
  name = json['name'];
  priceType = json['priceType'];
  price = json['price'];
  percentage = json['percentage'];
  totalPrice = json['totalPrice'];
  quantity = json['quantity'];
  totalAmount = json['totalAmount'];
  upcProductOfferId = json['upcProductOfferId'];
  glCode = json['glCode'];
  enabled = json['enabled'];
  adhoc = json['adhoc'];
}