SpoilerRenderObjectWidget constructor

const SpoilerRenderObjectWidget({
  1. Key? key,
  2. required Widget? child,
  3. PaintCallback? onPaint,
  4. PaintCallback? onAfterPaint,
  5. Path onClipPath(
    1. Size size
    )?,
  6. ValueChanged<List<Rect>>? onInit,
  7. ImageFilter? imageFilter,
  8. TextSelection? textSelection,
  9. bool enableOverlay = false,
})

Implementation

const SpoilerRenderObjectWidget({
  super.key,
  required super.child,
  this.onPaint,
  this.onAfterPaint,
  this.onClipPath,
  this.onInit,
  this.imageFilter,
  this.textSelection,
  this.enableOverlay = false,
});