watchById method
Watch a single item by its ID, emitting the item on change or null if deleted. Return null if the adapter doesn't support reactive queries.
Implementation
@override
Stream<T?>? watchById(String id, {String? userId}) => _watch(() => read(id, userId: userId), userId: userId);