RePaint constructor

const RePaint({
  1. required RePainter painter,
  2. bool repaintBoundary = true,
  3. Key? key,
})

A widget that repaints the scene using a custom controller.

Implementation

const RePaint({
  required this.painter,
  this.repaintBoundary = true,
  super.key,
});