DeviceSettings.fromJson constructor

DeviceSettings.fromJson(
  1. Map json_
)

Implementation

DeviceSettings.fromJson(core.Map json_)
    : this(
        adbEnabled: json_['adbEnabled'] as core.bool?,
        developmentSettingsEnabled:
            json_['developmentSettingsEnabled'] as core.bool?,
        encryptionStatus: json_['encryptionStatus'] as core.String?,
        isDeviceSecure: json_['isDeviceSecure'] as core.bool?,
        isEncrypted: json_['isEncrypted'] as core.bool?,
        unknownSourcesEnabled: json_['unknownSourcesEnabled'] as core.bool?,
        verifyAppsEnabled: json_['verifyAppsEnabled'] as core.bool?,
      );