TextPaginate constructor
TextPaginate({
- required String text,
- required TextStyle textStyle,
- required double pageWidth,
- required double pageHeight,
- EdgeInsets padding = EdgeInsets.zero,
- TextDirection textDirection = TextDirection.ltr,
Implementation
TextPaginate({
required this.text,
required this.textStyle,
required this.pageWidth,
required this.pageHeight,
this.padding = EdgeInsets.zero,
this.textDirection = TextDirection.ltr,
}) {
_characters = text.characters;
}