CellClipRect constructor

const CellClipRect({
  1. Key? key,
  2. ValueCell<CustomClipper<Rect>?>? clipper,
  3. ValueCell<Clip> clipBehavior = const ValueCell.value(Clip.hardEdge),
  4. ValueCell<Widget?>? child,
})

Implementation

const CellClipRect({
  super.key,
  this.clipper,
  this.clipBehavior = const ValueCell.value(Clip.hardEdge),
  this.child,
});