postScroll method

double postScroll(
  1. double available,
  2. NestedScrollPosition position
)

Implementation

double postScroll(double available, NestedScrollPosition position) {
  return consumeWith(
    available,
    position,
    (connection) => connection.onPostScroll,
    (connection) => NestedScrollConnection.of(context)?.postScroll,
  );
}