onLoad property

(Future<void> Function(List<QueryDocumentSnapshot<T>> items)?) onLoad
final

A function called after loading more data from Firestore. This function must finish before any new items are added to the list, allowing for any other data dependencies to be fetched before calling itemBuilder.

Implementation

final Future<void> Function(List<QueryDocumentSnapshot<T>> items)? onLoad;