open method
- IContext? context
override
Opens the component.
context
(optional) execution context to trace execution through call chain.
Implementation
@override
Future open(IContext? context) async {
if (isOpen()) return;
await super.open(context);
registerControllers();
}