getTextSearcher method
Gets the text searcher for the document. This method returns an instance of CPDFTextSearcher that can be used to perform text searches within the PDF document. example:
final searcher = document.getTextSearcher();
Implementation
CPDFTextSearcher getTextSearcher() {
return _textSearcher ??= CPDFTextSearcher(
int.parse(_channel.name.split('_').last),
);
}