GoogleChromeManagementV1TelemetryAppLaunchEvent.fromJson constructor

GoogleChromeManagementV1TelemetryAppLaunchEvent.fromJson(
  1. Map json_
)

Implementation

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