GoogleChromeManagementV1TelemetryUserInfo.fromJson constructor

GoogleChromeManagementV1TelemetryUserInfo.fromJson(
  1. Map json_
)

Implementation

GoogleChromeManagementV1TelemetryUserInfo.fromJson(core.Map json_)
    : this(
        email:
            json_.containsKey('email') ? json_['email'] as core.String : null,
        orgUnitId: json_.containsKey('orgUnitId')
            ? json_['orgUnitId'] as core.String
            : null,
      );