HtmlPaginator constructor

HtmlPaginator({
  1. required double pageWidth,
  2. required double pageHeight,
  3. required double fontSize,
  4. String fontFamily = 'Segoe',
  5. String? fontPackage,
  6. TextDirection textDirection = TextDirection.ltr,
})

Implementation

HtmlPaginator({
  required this.pageWidth,
  required this.pageHeight,
  required this.fontSize,
  this.fontFamily = 'Segoe',
  this.fontPackage,
  this.textDirection = TextDirection.ltr,
});