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,
);