afterSyncNotifyUpdate abstract method

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

Called after the local state has been updated with new data.

Use this method to perform any necessary operations after the documents have been synchronized with local state.

Parameters:

  • docs - The new documents from Firestore

Implementation

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