ReactiveController constructor

ReactiveController()

Creates a ReactiveController and calls onInit.

The constructor is called when the controller is registered in the dependency system via Dependency.put or created through ReactiveState.

Implementation

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