notify method

  1. @override
dynamic notify()
inherited

通知刷新

Implementation

@override
notify() {
  try {
    if (_castWidget.notifyNeedAfterPushAnimation(this)) {
      if (isFinishedPushAnimation) {
        super.notify();
      } else {
        addEnsureAfterPushAnimationTask(() {
          super.notify();
        });
      }
      return;
    }
    super.notify();
  } catch (e) {
    //
  }
}