BatchGetSubscriptionsResponse.fromJson constructor

BatchGetSubscriptionsResponse.fromJson(
  1. Map json_
)

Implementation

BatchGetSubscriptionsResponse.fromJson(core.Map json_)
    : this(
        subscriptions: json_.containsKey('subscriptions')
            ? (json_['subscriptions'] as core.List)
                .map((value) => Subscription.fromJson(
                    value as core.Map<core.String, core.dynamic>))
                .toList()
            : null,
      );