GoogleChromeManagementV1TouchScreenInfo.fromJson constructor

GoogleChromeManagementV1TouchScreenInfo.fromJson(
  1. Map json_
)

Implementation

GoogleChromeManagementV1TouchScreenInfo.fromJson(core.Map json_)
  : this(
      devices:
          (json_['devices'] as core.List?)
              ?.map(
                (value) => GoogleChromeManagementV1TouchScreenDevice.fromJson(
                  value as core.Map<core.String, core.dynamic>,
                ),
              )
              .toList(),
      touchpadLibrary: json_['touchpadLibrary'] as core.String?,
    );