XStorieBar constructor

const XStorieBar(
  1. {Key key,
  2. Color color,
  3. double circleRadius,
  4. Widget child,
  5. @required String text,
  6. ImageProvider backgroundImage,
  7. Color circleColor,
  8. double fontSize,
  9. FontWeight fontWeight,
  10. String fontFamily,
  11. Color textColor,
  12. double verticalSpace,
  13. Function onTap}
)

Implementation

const XStorieBar(
    {Key key,
    this.color,
    this.circleRadius,
    this.child,
    @required this.text,
    this.backgroundImage,
    this.circleColor,
    this.fontSize,
    this.fontWeight,
    this.fontFamily,
    this.textColor,
    this.verticalSpace,
    this.onTap})
    : super(key: key);