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