secureBootEnabled property

  1. @TagNumber.new(13)
bool get secureBootEnabled

true if secure boot is enabled on the device

Implementation

@$pb.TagNumber(13)
$core.bool get secureBootEnabled => $_getBF(12);
  1. @TagNumber.new(13)
set secureBootEnabled (bool v)

Implementation

@$pb.TagNumber(13)
set secureBootEnabled($core.bool v) {
  $_setBool(12, v);
}