TextExtractionOptions.full constructor
TextExtractionOptions.full()
Creates TextExtractionOptions for full text extraction
Implementation
factory TextExtractionOptions.full() {
return const TextExtractionOptions(
preserveLinks: true,
preserveImages: true,
preserveFormatting: true,
preserveHeadings: true,
preserveLists: true,
preserveParagraphs: true,
preserveTables: true,
preserveLineBreaks: true,
extractMainContentOnly: false,
);
}