textPage method
Implementation
@override
Future<UDocTextPage> textPage(int pageIndex) async {
final UEpubChapter chapter = await this.chapter(pageIndex);
return UDocTextPage(pageIndex: pageIndex, runs: const <UDocTextRun>[], text: chapter.text, size: const Size(600, 900));
}