tick method

  1. @mustCallSuper
void tick({
  1. bool fromChild = false,
})

Implementation

@mustCallSuper
void tick({bool fromChild = false}) {
  if (_enableTickToParent) {
    _parent?.tick(fromChild: true);
  }
}