XCustomStatic constructor

const XCustomStatic(
  1. {Key key,
  2. double width,
  3. List<BoxShadow> boxShadow,
  4. EdgeInsetsGeometry padding,
  5. double rounded,
  6. Function onTap,
  7. EdgeInsetsGeometry margin,
  8. Widget title,
  9. @required Widget value,
  10. double spaceHeight = 10.0,
  11. Color bgColor = Colors.white,
  12. Widget child}
)

Implementation

const XCustomStatic(
    {Key key,
    this.width,
    this.boxShadow,
    this.padding,
    this.rounded,
    this.onTap,
    this.margin,
    this.title,
    @required this.value,
    this.spaceHeight = 10.0,
    this.bgColor = Colors.white,
    this.child})
    : super(key: key);