LongTapAnimation constructor

const LongTapAnimation({
  1. Key? key,
  2. required Widget child,
  3. double pressedScale = 0.9,
})

Constructor for the LongTapAnimation widget.

Implementation

const LongTapAnimation({
  super.key,
  required this.child,
  this.pressedScale = 0.9,
});