components property
Returns the list of island component types used by this page.
These components will be registered for hydration on the client. Override this getter to declare which component types your page uses.
The build system uses this list to generate a web-entrypoint that registers these components for hydration, without needing to import the page itself (allowing pages to use dart:io).
Example
@override
List<Type> get components => [
Counter,
UserCard,
];
Implementation
List<Type> get components => [];