value property

dynamic get value

value is a getter that returns the set value.

Implementation

dynamic get value => isLeft() ? _left! : _right!;