Future<Chunk> get(String doc) => FirestoreDatabase.instance .collection(collection) .doc(doc) .get() .then((d) => $Chunk.fromMap(d.data ?? {}));