Block constructor

Block({
  1. String? blockType,
  2. BoundingPoly? boundingBox,
  3. double? confidence,
  4. List<Paragraph>? paragraphs,
  5. TextProperty? property,
})

Implementation

Block({
  this.blockType,
  this.boundingBox,
  this.confidence,
  this.paragraphs,
  this.property,
});