StripPlan constructor

StripPlan({
  1. required int totalFlushPoints,
  2. required int deviceWidth,
  3. required int deviceHeight,
  4. required PdfMatrix pageToDevice,
  5. required double tolerance,
  6. required List<StripBatchData> batches,
  7. bool slugGlyphs = false,
  8. List<SlugBatchData> slugBatches = const [],
  9. int slugQuadCount = 0,
  10. int slugFallbackOutlineRuns = 0,
  11. List<int> slugFallbackOrdinals = const [],
})

Implementation

StripPlan({
  required this.totalFlushPoints,
  required this.deviceWidth,
  required this.deviceHeight,
  required this.pageToDevice,
  required this.tolerance,
  required this.batches,
  this.slugGlyphs = false,
  this.slugBatches = const [],
  this.slugQuadCount = 0,
  this.slugFallbackOutlineRuns = 0,
  this.slugFallbackOrdinals = const [],
});