GoogleChromeManagementV1RuntimeCountersReport.fromJson constructor

GoogleChromeManagementV1RuntimeCountersReport.fromJson(
  1. Map json_
)

Implementation

GoogleChromeManagementV1RuntimeCountersReport.fromJson(core.Map json_)
    : this(
        enterHibernationCount: json_.containsKey('enterHibernationCount')
            ? json_['enterHibernationCount'] as core.String
            : null,
        enterPoweroffCount: json_.containsKey('enterPoweroffCount')
            ? json_['enterPoweroffCount'] as core.String
            : null,
        enterSleepCount: json_.containsKey('enterSleepCount')
            ? json_['enterSleepCount'] as core.String
            : null,
        reportTime: json_.containsKey('reportTime')
            ? json_['reportTime'] as core.String
            : null,
        uptimeRuntimeDuration: json_.containsKey('uptimeRuntimeDuration')
            ? json_['uptimeRuntimeDuration'] as core.String
            : null,
      );