GoogleChromeManagementVersionsV1ListChromeBrowserProfileCommandsResponse.fromJson constructor

GoogleChromeManagementVersionsV1ListChromeBrowserProfileCommandsResponse.fromJson(
  1. Map json_
)

Implementation

GoogleChromeManagementVersionsV1ListChromeBrowserProfileCommandsResponse.fromJson(
  core.Map json_,
) : this(
      chromeBrowserProfileCommands:
          (json_['chromeBrowserProfileCommands'] as core.List?)
              ?.map(
                (value) =>
                    GoogleChromeManagementVersionsV1ChromeBrowserProfileCommand.fromJson(
                      value as core.Map<core.String, core.dynamic>,
                    ),
              )
              .toList(),
      nextPageToken: json_['nextPageToken'] as core.String?,
      totalSize: json_['totalSize'] as core.String?,
    );