open method

  1. @override
Future open(
  1. IContext? context
)

Opens the component.

  • context (optional) a context to trace execution through call chain. Return Future that receives error or null no errors occured.

Implementation

@override
Future open(IContext? context) async {
  await _load(context);
  opened = true;
}