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