FeedbackAnnotationOverlay constructor

const FeedbackAnnotationOverlay({
  1. Key? key,
  2. required Uint8List imageBytes,
  3. required void onSave(
    1. Uint8List annotatedBytes
    ),
  4. VoidCallback? onDiscard,
  5. String saveLabel = 'Save',
  6. String discardLabel = 'Discard',
  7. String undoTooltip = 'Undo',
})

Implementation

const FeedbackAnnotationOverlay({
  super.key,
  required this.imageBytes,
  required this.onSave,
  this.onDiscard,
  this.saveLabel = 'Save',
  this.discardLabel = 'Discard',
  this.undoTooltip = 'Undo',
});