GoogleAppsCloudidentityDevicesV1AndroidAttributes.fromJson constructor

GoogleAppsCloudidentityDevicesV1AndroidAttributes.fromJson(
  1. Map json_
)

Implementation

GoogleAppsCloudidentityDevicesV1AndroidAttributes.fromJson(core.Map json_)
    : this(
        ctsProfileMatch: json_.containsKey('ctsProfileMatch')
            ? json_['ctsProfileMatch'] as core.bool
            : null,
        enabledUnknownSources: json_.containsKey('enabledUnknownSources')
            ? json_['enabledUnknownSources'] as core.bool
            : null,
        hasPotentiallyHarmfulApps:
            json_.containsKey('hasPotentiallyHarmfulApps')
                ? json_['hasPotentiallyHarmfulApps'] as core.bool
                : null,
        ownerProfileAccount: json_.containsKey('ownerProfileAccount')
            ? json_['ownerProfileAccount'] as core.bool
            : null,
        ownershipPrivilege: json_.containsKey('ownershipPrivilege')
            ? json_['ownershipPrivilege'] as core.String
            : null,
        supportsWorkProfile: json_.containsKey('supportsWorkProfile')
            ? json_['supportsWorkProfile'] as core.bool
            : null,
        verifiedBoot: json_.containsKey('verifiedBoot')
            ? json_['verifiedBoot'] as core.bool
            : null,
        verifyAppsEnabled: json_.containsKey('verifyAppsEnabled')
            ? json_['verifyAppsEnabled'] as core.bool
            : null,
      );