SoftUiTouchableWidget constructor

const SoftUiTouchableWidget({
  1. required Widget child,
  2. void onPressed()?,
  3. Key? key,
})

Implementation

const SoftUiTouchableWidget({
  required this.child,
  this.onPressed,
  super.key,
});