GuideWidget constructor
const
GuideWidget({Key key, @required List<String> images, Color selectedColor: const Color(0xff1BB754), Color unSelectedColor: Colors.white, double circleRadius: 10.0, double ellipticalWidth: 16.0, double ellipticalHeight: 8.0, double cornerRadius: 10.0, double indicatorPaddingBottom: 10.0, IndicatorStyle indicatorStyle: IndicatorStyle.CIRCLE, Widget enter })
Implementation
const GuideWidget(
{Key key,
@required this.images,
this.selectedColor: const Color(0xff1BB754),
this.unSelectedColor: Colors.white,
this.circleRadius: 10.0,
this.ellipticalWidth: 16.0,
this.ellipticalHeight: 8.0,
this.cornerRadius: 10.0,
this.indicatorPaddingBottom: 10.0,
this.indicatorStyle: IndicatorStyle.CIRCLE,
this.enter})
: super(key: key);