GoogleCloudApigeeV1ListDeveloperSubscriptionsResponse.fromJson constructor

GoogleCloudApigeeV1ListDeveloperSubscriptionsResponse.fromJson(
  1. Map json_
)

Implementation

GoogleCloudApigeeV1ListDeveloperSubscriptionsResponse.fromJson(core.Map json_)
  : this(
      developerSubscriptions: (json_['developerSubscriptions'] as core.List?)
          ?.map(
            (value) => GoogleCloudApigeeV1DeveloperSubscription.fromJson(
              value as core.Map<core.String, core.dynamic>,
            ),
          )
          .toList(),
      nextStartKey: json_['nextStartKey'] as core.String?,
    );