AutoRenewingPlan.fromJson constructor
AutoRenewingPlan.fromJson(
- Map json_
Implementation
AutoRenewingPlan.fromJson(core.Map json_)
: this(
autoRenewEnabled: json_['autoRenewEnabled'] as core.bool?,
installmentDetails: json_.containsKey('installmentDetails')
? InstallmentPlan.fromJson(json_['installmentDetails']
as core.Map<core.String, core.dynamic>)
: null,
priceChangeDetails: json_.containsKey('priceChangeDetails')
? SubscriptionItemPriceChangeDetails.fromJson(
json_['priceChangeDetails']
as core.Map<core.String, core.dynamic>)
: null,
recurringPrice: json_.containsKey('recurringPrice')
? Money.fromJson(json_['recurringPrice']
as core.Map<core.String, core.dynamic>)
: null,
);