GoogleChromeManagementV1CountChromeBrowsersNeedingAttentionResponse.fromJson constructor

GoogleChromeManagementV1CountChromeBrowsersNeedingAttentionResponse.fromJson(
  1. Map json_
)

Implementation

GoogleChromeManagementV1CountChromeBrowsersNeedingAttentionResponse.fromJson(
    core.Map json_)
    : this(
        noRecentActivityCount: json_.containsKey('noRecentActivityCount')
            ? json_['noRecentActivityCount'] as core.String
            : null,
        pendingBrowserUpdateCount:
            json_.containsKey('pendingBrowserUpdateCount')
                ? json_['pendingBrowserUpdateCount'] as core.String
                : null,
        recentlyEnrolledCount: json_.containsKey('recentlyEnrolledCount')
            ? json_['recentlyEnrolledCount'] as core.String
            : null,
      );