GoogleChromeManagementV1NetworkBandwidthReport.fromJson constructor

GoogleChromeManagementV1NetworkBandwidthReport.fromJson(
  1. Map json_
)

Implementation

GoogleChromeManagementV1NetworkBandwidthReport.fromJson(core.Map json_)
    : this(
        downloadSpeedKbps: json_.containsKey('downloadSpeedKbps')
            ? json_['downloadSpeedKbps'] as core.String
            : null,
        reportTime: json_.containsKey('reportTime')
            ? json_['reportTime'] as core.String
            : null,
      );