set method

void set(
  1. T newValue, {
  2. bool force = false,
})

Sets the value of the beacon and allows a force notification

Implementation

void set(T newValue, {bool force = false}) {
  _setValue(newValue, force: force);
}