allStyleHooks property

List<RenderStyleHook> get allStyleHooks

All rendering style hooks active on this document, combining document-level styleHooks and registered plugin hooks (including suggestion rendering provided by FluentSuggestionPlugin via its styleHook override).

The result is cached and reused across frames; invalidated automatically when hooks are added or removed.

Implementation

List<RenderStyleHook> get allStyleHooks {
  return _cachedAllStyleHooks ??= [..._styleHooks, ...registry.styleHooks];
}