subscribe property

bool? get subscribe

Present if the server offers any resources to read.

Implementation

bool? get subscribe => _value[Keys.subscribe] as bool?;
set subscribe (bool? value)

Sets whether subscribe is supported.

Implementation

set subscribe(bool? value) {
  assert(subscribe == null);
  _value[Keys.subscribe] = value;
}