PriceOverrides.fromJson constructor
Implementation
PriceOverrides.fromJson(Map<String, dynamic> json) {
if (json['country'] != null) {
country = [];
if ( json['country']!= null){
json['country'].forEach((v) {
country!.add(v);
});
}
}
}