RenderTranslucentPointer constructor

RenderTranslucentPointer({
  1. RenderBox? child,
  2. bool translucent = true,
})

Creates a render object that is invisible to its parent during hit testing

Implementation

RenderTranslucentPointer({
  RenderBox? child,
  bool translucent = true,
})  : _translucent = translucent,
      super(child);