Block constructor
- {required TextProperty? property,
- required BoundingPoly? boundingBox,
- BlockType blockType = BlockType.UNKNOWN,
- required List<
Paragraph> ? paragraphs, - required double? confidence}
Implementation
Block({
required this.property,
required this.boundingBox,
this.blockType = BlockType.UNKNOWN,
required this.paragraphs,
required this.confidence,
});