data method
return the Document mapped to the id
Implementation
Stream<List<DocumentSnapshot<T>>> data(String id) {
return _stream!.map((querySnapshot) {
querySnapshot.docs.where((documentSnapshot) {
return documentSnapshot.id == id;
});
return querySnapshot.docs;
});
}