Paragraph constructor

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

Implementation

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