removeStatusListener method

void removeStatusListener(
  1. PagingStatusListener listener
)

Stops calling the listener every time the status of the pagination changes.

Listeners can be added with addStatusListener.

Implementation

void removeStatusListener(PagingStatusListener listener) {
  assert(_debugAssertNotDisposed());
  _statusListeners!.remove(listener);
}