GoogleCloudChannelV1CheckCloudIdentityAccountsExistResponse.fromJson constructor

GoogleCloudChannelV1CheckCloudIdentityAccountsExistResponse.fromJson(
  1. Map json_
)

Implementation

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