GoogleChromeManagementV1FindInstalledAppProfilesResponse.fromJson constructor

GoogleChromeManagementV1FindInstalledAppProfilesResponse.fromJson(
  1. Map json_
)

Implementation

GoogleChromeManagementV1FindInstalledAppProfilesResponse.fromJson(
  core.Map json_,
) : this(
      nextPageToken: json_['nextPageToken'] as core.String?,
      profiles: (json_['profiles'] as core.List?)
          ?.map(
            (value) =>
                GoogleChromeManagementV1ProfileAppInstallInstance.fromJson(
                  value as core.Map<core.String, core.dynamic>,
                ),
          )
          .toList(),
      totalSize: json_['totalSize'] as core.int?,
    );