getDocument method
Get a store for an existing document
Implementation
@override
Future<CRDTDocument?> getDocument(String documentId) async {
if (!await hasDocument(documentId)) {
return null;
}
return (await _openDocument(documentId)).document;
}