RecognizedBlock constructor

RecognizedBlock({
  1. required String text,
  2. required double confidence,
  3. required double boundingBoxOriginX,
  4. required double boundingBoxOriginY,
  5. required double boundingBoxWidth,
  6. required double boundingBoxHeight,
})

Implementation

RecognizedBlock(
    {required this.text,
    required this.confidence,
    required this.boundingBoxOriginX,
    required this.boundingBoxOriginY,
    required this.boundingBoxWidth,
    required this.boundingBoxHeight});