ExtendedCustomPaint constructor

const ExtendedCustomPaint({
  1. Key? key,
  2. bool initIsComplex = false,
  3. bool initWillChange = false,
  4. CustomPainter? initForegroundPainter,
  5. CustomPainter? initPainter,
  6. required Widget child,
})

Implementation

const ExtendedCustomPaint({
  super.key,
  this.initIsComplex = false,
  this.initWillChange = false,
  this.initForegroundPainter,
  this.initPainter,
  required this.child,
});