GoogleChromeManagementV1TelemetryAppUninstallEvent.fromJson constructor

GoogleChromeManagementV1TelemetryAppUninstallEvent.fromJson(
  1. Map json_
)

Implementation

GoogleChromeManagementV1TelemetryAppUninstallEvent.fromJson(core.Map json_)
    : this(
        appId:
            json_.containsKey('appId') ? json_['appId'] as core.String : null,
        appType: json_.containsKey('appType')
            ? json_['appType'] as core.String
            : null,
        appUninstallSource: json_.containsKey('appUninstallSource')
            ? json_['appUninstallSource'] as core.String
            : null,
      );