transformFileWithOverlap method
Transforms a file into overlapping chunks using Chunky's file stringers.
@param file The file to ingest @param overlap The number of characters to overlap between chunks @return A stream of overlapping chunks
Implementation
Stream<Chunk> transformFileWithOverlap(File file, {int overlap = 50}) =>
transformFile(file).overlap(overlap);