GoogleAppsCloudidentityDevicesV1BrowserAttributes.fromJson constructor

GoogleAppsCloudidentityDevicesV1BrowserAttributes.fromJson(
  1. Map json_
)

Implementation

GoogleAppsCloudidentityDevicesV1BrowserAttributes.fromJson(core.Map json_)
    : this(
        chromeBrowserInfo: json_.containsKey('chromeBrowserInfo')
            ? GoogleAppsCloudidentityDevicesV1BrowserInfo.fromJson(
                json_['chromeBrowserInfo']
                    as core.Map<core.String, core.dynamic>)
            : null,
        chromeProfileId: json_.containsKey('chromeProfileId')
            ? json_['chromeProfileId'] as core.String
            : null,
        lastProfileSyncTime: json_.containsKey('lastProfileSyncTime')
            ? json_['lastProfileSyncTime'] as core.String
            : null,
      );