Block constructor

Block({
  1. BlockType? blockType,
  2. int? columnIndex,
  3. int? columnSpan,
  4. double? confidence,
  5. List<EntityType>? entityTypes,
  6. Geometry? geometry,
  7. String? id,
  8. int? page,
  9. List<Relationship>? relationships,
  10. int? rowIndex,
  11. int? rowSpan,
  12. SelectionStatus? selectionStatus,
  13. String? text,
  14. TextType? textType,
})

Implementation

Block({
  this.blockType,
  this.columnIndex,
  this.columnSpan,
  this.confidence,
  this.entityTypes,
  this.geometry,
  this.id,
  this.page,
  this.relationships,
  this.rowIndex,
  this.rowSpan,
  this.selectionStatus,
  this.text,
  this.textType,
});