ButlerField constructor

ButlerField({
  1. required String fieldName,
  2. String? value,
  3. String? confidenceScore,
  4. required double? confidenceValue,
  5. required double? ocrConfidenceValue,
})

Implementation

ButlerField({
  required this.fieldName,
  this.value,
  this.confidenceScore,
  required this.confidenceValue,
  required this.ocrConfidenceValue,
});