listen method

  1. @override
Future<FirestoreCollectionModel<T>> listen()
override

Load data while monitoring Firestore for real-time updates.

It will continue to monitor for updates until dispose().

Implementation

@override
Future<FirestoreCollectionModel<T>> listen() {
  throw UnimplementedError(
    "In the case of search processing, Listen is not possible.",
  );
}