BatchGetSubscriptionOffersResponse.fromJson constructor
BatchGetSubscriptionOffersResponse.fromJson(
- Map json_
Implementation
BatchGetSubscriptionOffersResponse.fromJson(core.Map json_)
: this(
subscriptionOffers:
(json_['subscriptionOffers'] as core.List?)
?.map(
(value) => SubscriptionOffer.fromJson(
value as core.Map<core.String, core.dynamic>,
),
)
.toList(),
);