PriceOverrides.fromJson constructor

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

Implementation

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

  }
}