$initLifecycleHandlers method

  1. @internal
void $initLifecycleHandlers(
  1. _TFuncNotifyInitState funcNotifyInitState,
  2. _TFuncNotifyDispose funcNotifyDispose
)
inherited

Implementation

@internal
void $initLifecycleHandlers(_TFuncNotifyInitState funcNotifyInitState, _TFuncNotifyDispose funcNotifyDispose) {
	this.funcNotifyInitState = (state) => Tick.nextTick(() => funcNotifyInitState(state));
	this.funcNotifyDispose = funcNotifyDispose;
}