selectableChildren property

Iterable<Renderable Function(bool focused)> get selectableChildren

Children which can be selected (i.e. not wrapped in SkipSelect).

Implementation

Iterable<Renderable Function(bool focused)> get selectableChildren =>
    children.where((e) => e(focused) is! SkipSelect);