SubscriptionLineItemBundleDetails.fromJson constructor

SubscriptionLineItemBundleDetails.fromJson(
  1. Map json_
)

Implementation

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