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