DrawingPadCanvas constructor

const DrawingPadCanvas({
  1. Key? key,
  2. Map<StampType, PictureInfo> stamps = const {},
  3. dynamic onDrawingStrokeChanged(
    1. Stroke?
    )?,
  4. required DrawingPadController controller,
})

Implementation

const DrawingPadCanvas({
  super.key,
  this.stamps = const {},
  this.onDrawingStrokeChanged,
  required this.controller,
});