buildPast method

Future<void> buildPast({
  1. bool allowPull = true,
})

Asynchronously builds past-direction quilts, optionally pulling data.

Handles backward prefetching with allowPull flag, updating buffers and edges. Used in Carpet's initial load and scroll listeners.

Implementation

Future<void> buildPast({bool allowPull = true}) =>
    buildQuilts(QuiltDirection.past, allowPull: allowPull);