GoogleCloudChannelV1ListEntitlementsResponse.fromJson constructor

GoogleCloudChannelV1ListEntitlementsResponse.fromJson(
  1. Map json_
)

Implementation

GoogleCloudChannelV1ListEntitlementsResponse.fromJson(core.Map json_)
    : this(
        entitlements: json_.containsKey('entitlements')
            ? (json_['entitlements'] as core.List)
                .map((value) => GoogleCloudChannelV1Entitlement.fromJson(
                    value as core.Map<core.String, core.dynamic>))
                .toList()
            : null,
        nextPageToken: json_.containsKey('nextPageToken')
            ? json_['nextPageToken'] as core.String
            : null,
      );