getSourceDocument method
Get the original source document content by source ID.
Returns null if the source doesn't exist.
Implementation
Future<String?> getSourceDocument({required int sourceId}) async {
return await rust_rag.getSource(sourceId: sourceId);
}