GoogleChromeManagementV1TouchScreenDevice.fromJson constructor

GoogleChromeManagementV1TouchScreenDevice.fromJson(
  1. Map json_
)

Implementation

GoogleChromeManagementV1TouchScreenDevice.fromJson(core.Map json_)
    : this(
        displayName: json_.containsKey('displayName')
            ? json_['displayName'] as core.String
            : null,
        stylusCapable: json_.containsKey('stylusCapable')
            ? json_['stylusCapable'] as core.bool
            : null,
        touchPointCount: json_.containsKey('touchPointCount')
            ? json_['touchPointCount'] as core.int
            : null,
      );