Price.fromJson constructor

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

Implementation

Price.fromJson(Map<String, dynamic> json) {
  id = json['id'];
  percentage = json['percentage'];
  taxRate = json['taxRate'];
  dutyFreeAmount = json['dutyFreeAmount'];
  taxIncludedAmount = json['taxIncludedAmount'];
}