PricingPhaseAndroid.fromJSON constructor

PricingPhaseAndroid.fromJSON(
  1. Map<String, dynamic> json
)

Implementation

PricingPhaseAndroid.fromJSON(Map<String, dynamic> json)
    : price = json["price"] as String?,
      formattedPrice = json["formattedPrice"] as String?,
      billingPeriod = json["billingPeriod"] as String?,
      currencyCode = json["currencyCode"] as String?,
      recurrenceMode = json["recurrenceMode"] as int?,
      billingCycleCount = json["billingCycleCount"] as int?;