components property

ModuleComponents? components

The components object should contain all react-dart compatible UI component factory methods that a consumer can use to render module data.

components is initially null. If a module exposes public components, this should be overridden to provide a class defined specifically for the module. By convention, the custom components class should extend ModuleComponents to ensure that the default UI component is available via the module.components.content() method.

If using with w_flux internals, components methods should usually return UI component factories that have been internally initialized with the proper actions and stores props. This ensures full functionality of the components without any external exposure of the requisite internal actions and stores.

Implementation

ModuleComponents? get components => null;