getSourceChunks method

Future<List<String>> getSourceChunks(
  1. int sourceId
)

Get all chunk texts for a specific source document.

Returns the raw text content of each chunk in order.

Implementation

Future<List<String>> getSourceChunks(int sourceId) =>
    _engine!.getSourceChunks(sourceId);