GoogleChromeManagementV1HeartbeatStatusReport.fromJson constructor

GoogleChromeManagementV1HeartbeatStatusReport.fromJson(
  1. Map json_
)

Implementation

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