GoogleCloudChannelV1TransferEntitlementsToGoogleRequest.fromJson constructor

GoogleCloudChannelV1TransferEntitlementsToGoogleRequest.fromJson(
  1. Map json_
)

Implementation

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