effectiveItems property

List<PaneItem> effectiveItems

All the PaneItems inside allItems

Implementation

List<PaneItem> get effectiveItems {
  return (allItems..removeWhere((i) => i is! PaneItem || i is PaneItemAction))
      .cast<PaneItem>();
}