beforeSyncNotifyUpdate abstract method

Future<void> beforeSyncNotifyUpdate(
  1. T? doc
)

Called before the local state is updated with new data.

Use this method to perform any necessary operations before the document is synchronized with local state.

Parameters:

  • doc - The new document from Firestore

Implementation

Future<void> beforeSyncNotifyUpdate(T? doc);