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