KAdvertisingSetting constructor

KAdvertisingSetting({
  1. String? name,
  2. bool connectable = true,
  3. int timeout = 0,
  4. int advertiseMode = ADVERTISE_MODE_BALANCED,
  5. int txPowerLevel = ADVERTISE_TX_POWER_MEDIUM,
})

Implementation

KAdvertisingSetting({
  this.name,
  this.connectable = true,
  this.timeout = 0,
  this.advertiseMode = ADVERTISE_MODE_BALANCED,
  this.txPowerLevel = ADVERTISE_TX_POWER_MEDIUM,
});