AnimatedHorizontalStick constructor

const AnimatedHorizontalStick({
  1. Key? key,
  2. required Animation<double> animation,
  3. required double targetWidth,
  4. Color? firstSlideColor,
  5. Color? secondSlideColor,
  6. double? underlineHeight,
})

Implementation

const AnimatedHorizontalStick({
  super.key,
  required this.animation,
  required this.targetWidth,
  this.firstSlideColor,
  this.secondSlideColor,
  this.underlineHeight,
}) : super(
  listenable: animation,
);