CustomCanvas constructor

const CustomCanvas({
  1. Key? key,
  2. required PaintCanvas paint,
  3. ValueNotifier<int>? frame,
})

Implementation

const CustomCanvas({
  super.key,
  required this.paint,
  this.frame,
});