GoogleChromeManagementV1TelemetryUsbPeripheralsEvent.fromJson constructor

GoogleChromeManagementV1TelemetryUsbPeripheralsEvent.fromJson(
  1. Map json_
)

Implementation

GoogleChromeManagementV1TelemetryUsbPeripheralsEvent.fromJson(core.Map json_)
  : this(
      usbPeripheralReport: (json_['usbPeripheralReport'] as core.List?)
          ?.map(
            (value) => GoogleChromeManagementV1UsbPeripheralReport.fromJson(
              value as core.Map<core.String, core.dynamic>,
            ),
          )
          .toList(),
    );