InfinitelySlide constructor

const InfinitelySlide({
  1. Key? key,
  2. required Widget image,
  3. required double width,
})

Implementation

const InfinitelySlide({
  Key? key,
  required this.image,
  required this.width,
}) : super(key: key);