activeValue property
T?
get
activeValue
The strongly-typed value behind the active node, or null.
Implementation
T? get activeValue => _active == null ? null : node(_active!)?.value;
The strongly-typed value behind the active node, or null.
T? get activeValue => _active == null ? null : node(_active!)?.value;