tick method

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

Implementation

@mustCallSuper
@override
void tick({bool fromChild = false}) {
  if (fromChild) {
    _clearRenderChildren();
  }
  super.tick(fromChild: fromChild);
}