autoUpdate property

  1. @TagNumber.new(5)
bool get autoUpdate

enable silent background OTA checks on WiFi connect

Implementation

@$pb.TagNumber(5)
$core.bool get autoUpdate => $_getBF(4);
  1. @TagNumber.new(5)
set autoUpdate (bool v)

Implementation

@$pb.TagNumber(5)
set autoUpdate($core.bool v) {
  $_setBool(4, v);
}