isShowedInSearching property
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;
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) {}