ReactiveController constructor

ReactiveController()

Initializes the reactive controller.

This method is called when the reactive controller is instantiated.

It is recommended to perform initialization tasks in this method.

Implementation

ReactiveController() {
  Logger.info('$runtimeType initialized', tag: 'ReactiveController');
  onInit();
}