Method to get all documents in the collection.
Example:
Iterable<Data> allDocuments = collectionRef.get();
Iterable<Data> get() => database._r(key).values.whereType<Data>();