ListUserListGlobalLicenseCustomerInfosResponse.fromJson constructor
ListUserListGlobalLicenseCustomerInfosResponse.fromJson(
- Map json_
Implementation
ListUserListGlobalLicenseCustomerInfosResponse.fromJson(core.Map json_)
: this(
nextPageToken: json_['nextPageToken'] as core.String?,
userListGlobalLicenseCustomerInfos:
(json_['userListGlobalLicenseCustomerInfos'] as core.List?)
?.map(
(value) => UserListGlobalLicenseCustomerInfo.fromJson(
value as core.Map<core.String, core.dynamic>,
),
)
.toList(),
);