GoogleChromeManagementV1CountDevicesPerReleaseChannelResponse.fromJson constructor

GoogleChromeManagementV1CountDevicesPerReleaseChannelResponse.fromJson(
  1. Map json_
)

Implementation

GoogleChromeManagementV1CountDevicesPerReleaseChannelResponse.fromJson(
  core.Map json_,
) : this(
      betaChannelCount: json_['betaChannelCount'] as core.String?,
      canaryChannelCount: json_['canaryChannelCount'] as core.String?,
      devChannelCount: json_['devChannelCount'] as core.String?,
      ltcChannelCount: json_['ltcChannelCount'] as core.String?,
      ltsChannelCount: json_['ltsChannelCount'] as core.String?,
      stableChannelCount: json_['stableChannelCount'] as core.String?,
      unreportedChannelCount: json_['unreportedChannelCount'] as core.String?,
      unsupportedChannelCount:
          json_['unsupportedChannelCount'] as core.String?,
    );