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