TextBlock constructor

const TextBlock({
  1. required double x0,
  2. required double y0,
  3. required double x1,
  4. required double y1,
  5. required String text,
  6. required int blockNumber,
  7. int blockType = 0,
})

Implementation

const TextBlock({
  required this.x0,
  required this.y0,
  required this.x1,
  required this.y1,
  required this.text,
  required this.blockNumber,
  this.blockType = 0,
});