notify method
通知刷新
Implementation
@override
notify() {
try {
if (_castWidget.notifyNeedAfterPushAnimation(this)) {
if (isFinishedPushAnimation) {
super.notify();
} else {
addEnsureAfterPushAnimationTask(() {
super.notify();
});
}
return;
}
super.notify();
} catch (e) {
//
}
}