HitTestBlocker constructor

const HitTestBlocker({
  1. Key? key,
  2. bool up = true,
  3. bool down = false,
  4. bool self = false,
  5. Widget? child,
})

Implementation

const HitTestBlocker({
  Key? key,
  this.up = true,
  this.down = false,
  this.self = false,
  Widget? child,
}) : super(key: key, child: child);