SubscriptionLineItemBundleDetails.fromJson constructor
SubscriptionLineItemBundleDetails.fromJson(
- Map json_
Implementation
SubscriptionLineItemBundleDetails.fromJson(core.Map json_)
: this(
bundleElementDetails: json_.containsKey('bundleElementDetails')
? (json_['bundleElementDetails'] as core.List)
.map((value) =>
GoogleCloudPaymentsResellerSubscriptionV1SubscriptionLineItemBundleDetailsBundleElementDetails
.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList()
: null,
);