isShowedInSearching property

  1. @override
bool get isShowedInSearching
override

If we are searching a text in this tree, every branch from found nodes to the root should display true - else not show in searching false.

We can call this is isDisplayable.

Implementation

@override
bool get isShowedInSearching => data is! RootNode;
  1. @override
set isShowedInSearching (bool value)
override

If we are searching a text in this tree, every branch from found nodes to the root should display true - else not show in searching false.

We can call this is isDisplayable.

Implementation

@override
set isShowedInSearching(bool value) {}