ImageEditorDrawing constructor

const ImageEditorDrawing({
  1. Key? key,
  2. required ImageItem image,
  3. BrushOption options = const o.BrushOption(showBackground: true, translatable: true),
})

Implementation

const ImageEditorDrawing({
  super.key,
  required this.image,
  this.options = const o.BrushOption(
    showBackground: true,
    translatable: true,
  ),
});