IntroductoryPriceInfo.fromJson constructor

IntroductoryPriceInfo.fromJson(
  1. Map json_
)

Implementation

IntroductoryPriceInfo.fromJson(core.Map json_)
    : this(
        introductoryPriceAmountMicros:
            json_['introductoryPriceAmountMicros'] as core.String?,
        introductoryPriceCurrencyCode:
            json_['introductoryPriceCurrencyCode'] as core.String?,
        introductoryPriceCycles:
            json_['introductoryPriceCycles'] as core.int?,
        introductoryPricePeriod:
            json_['introductoryPricePeriod'] as core.String?,
      );