reattach method

dynamic reattach()
inherited

Get the latest target sliver BuildContext and reset some of the old data.

Implementation

reattach() {
  if (innerReattachCallBack == null) return;
  ambiguate(WidgetsBinding.instance)?.addPostFrameCallback((timeStamp) {
    innerReattachCallBack!();
  });
}