PaintEvent constructor

const PaintEvent({
  1. Key? key,
  2. PaintCallback? paintBefore,
  3. PaintCallback? paintAfter,
  4. Widget? child,
})

Implementation

const PaintEvent({
  Key? key,
  this.paintBefore,
  this.paintAfter,
  Widget? child
}) :
      super(key: key, child: child);