TapFillIcon constructor

const TapFillIcon({
  1. required Widget fillIcon,
  2. required Widget borderIcon,
  3. Duration animateDuration = const Duration(milliseconds: 300),
  4. bool initialPushed = false,
  5. AnimationController? animationController,
  6. Curve animationCurve = Curves.easeOutBack,
  7. void onTap()?,
  8. void onPush()?,
  9. void onPull()?,
  10. Key? key,
})

Implementation

const TapFillIcon({
  required this.fillIcon,
  required this.borderIcon,
  this.animateDuration = const Duration(milliseconds: 300),
  this.initialPushed = false,
  this.animationController,
  this.animationCurve = Curves.easeOutBack,
  this.onTap,
  this.onPush,
  this.onPull,
  super.key,
});