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