notify method

void notify()

Implementation

void notify() async {
  var delay = max(delegate.loadMoreDelay(), Duration(milliseconds: 16));
  await Future.delayed(delay);
  if (widget.status == LoadMoreStatus.idle) {
    _BuildNotify().dispatch(context);
  }
}