beforeSyncNotifyUpdate abstract method

Future<void> beforeSyncNotifyUpdate(
  1. List<T> docs
)

Called before the local state is updated with new data.

Use this method to perform any necessary operations before the documents are synchronized with local state.

Parameters:

  • docs - The new documents from Firestore

Implementation

Future<void> beforeSyncNotifyUpdate(List<T> docs);