FormRenderMetrics constructor

const FormRenderMetrics({
  1. required double renderTimeMs,
  2. required int pageCount,
  3. int overflowCount = 0,
  4. int autofixCount = 0,
  5. int? fileSize,
})

Implementation

const FormRenderMetrics({
  required this.renderTimeMs,
  required this.pageCount,
  this.overflowCount = 0,
  this.autofixCount = 0,
  this.fileSize,
});