Paragraph constructor

Paragraph(
  1. {required TextProperty? property,
  2. required BoundingPoly? boundingBox,
  3. required List<Word>? words,
  4. required double? confidence}
)

Implementation

Paragraph({
  required this.property,
  required this.boundingBox,
  required this.words,
  required this.confidence,
});