PageInfo constructor

const PageInfo({
  1. required int pageIndex,
  2. required double width,
  3. required double height,
  4. required int rotation,
  5. String? label,
})

Implementation

const PageInfo({
  required this.pageIndex,
  required this.width,
  required this.height,
  required this.rotation,
  this.label,
});