value property

  1. @override
Matrix4 value
override

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

Implementation

@override
Matrix4 get value => _state._txController.value;
void value=(Matrix4 newValue)

Implementation

set value(Matrix4 newValue) =>
    _state._txController.value = makeMatrixInSafeRange(newValue);