BasicAnchoredHoleHelper constructor
BasicAnchoredHoleHelper({})
Implementation
BasicAnchoredHoleHelper({
Key? key,
required this.currentPos,
required this.padding,
required this.bgColor,
required this.anchorSize,
required Listenable listenable,
this.onTap,
}) : _stroke1Animation = CurvedAnimation(
parent: listenable as Animation<double>,
curve: Curves.ease,
),
_stroke2Animation = CurvedAnimation(
parent: listenable,
curve: const Interval(0, .8, curve: Curves.ease),
),
super(key: key, listenable: listenable);