PromotionIntroductoryPricingDetails.fromJson constructor

PromotionIntroductoryPricingDetails.fromJson(
  1. Map json_
)

Implementation

PromotionIntroductoryPricingDetails.fromJson(core.Map json_)
  : this(
      introductoryPricingSpecs: (json_['introductoryPricingSpecs'] as core.List?)
          ?.map(
            (value) =>
                PromotionIntroductoryPricingDetailsIntroductoryPricingSpec.fromJson(
                  value as core.Map<core.String, core.dynamic>,
                ),
          )
          .toList(),
    );