QdsPressableWidget constructor

const QdsPressableWidget({
  1. Key? key,
  2. required Widget child,
  3. VoidCallback? onPressed,
  4. bool? externalIsPressed,
  5. VoidCallback? onTapDown,
  6. VoidCallback? onTapUp,
  7. VoidCallback? onTapCancel,
  8. HitTestBehavior? hitTestBehavior,
})

Implementation

const QdsPressableWidget({
  super.key,
  required this.child,
  this.onPressed,
  this.externalIsPressed,
  this.onTapDown,
  this.onTapUp,
  this.onTapCancel,
  this.hitTestBehavior,
});