AnimatedSwipeArrowWidget constructor

const AnimatedSwipeArrowWidget({
  1. Key? key,
  2. int numberOfArrows = 5,
  3. TextDirection direction = TextDirection.rtl,
  4. double top = 0,
  5. double left = 0,
  6. double size = 18,
  7. IconData? icon,
  8. Color highlightColor = Colors.white,
  9. Color color = Colors.grey,
})

Implementation

const AnimatedSwipeArrowWidget({
  Key? key,
  this.numberOfArrows = 5,
  this.direction = TextDirection.rtl,
  this.top = 0,
  this.left = 0,
  this.size = 18,
  this.icon,
  this.highlightColor = Colors.white,
  this.color = Colors.grey,
}) : super(key: key);