value property

  1. @override
VLCValue get value
override

The current value of the object. When the value changes, the callbacks registered with addListener will be invoked.

Implementation

@override
VLCValue get value => _value;
set value (VLCValue val)

Implementation

set value(VLCValue val){
  if (_value == val) return;
  _value = val;
  notifyListeners();
}