GoogleAppsCloudidentityDevicesV1LookupSelfDeviceUsersResponse.fromJson constructor
GoogleAppsCloudidentityDevicesV1LookupSelfDeviceUsersResponse.fromJson(
- Map json_
Implementation
GoogleAppsCloudidentityDevicesV1LookupSelfDeviceUsersResponse.fromJson(
core.Map json_)
: this(
customer: json_.containsKey('customer')
? json_['customer'] as core.String
: null,
names: json_.containsKey('names')
? (json_['names'] as core.List)
.map((value) => value as core.String)
.toList()
: null,
nextPageToken: json_.containsKey('nextPageToken')
? json_['nextPageToken'] as core.String
: null,
);