PriceInfo.fromJson constructor

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

Implementation

PriceInfo.fromJson(Map<String, dynamic> json)
    : country = json['country'],
      currency = json['currency'],
      price = json['price'],
      tier = json['tier'],
      applePrice = json['applePrice'],
      appleCurrency = json['appleCurrency'];