CommonSetCell constructor

const CommonSetCell({
  1. Key? key,
  2. String title = '',
  3. String? leftImgPath,
  4. Widget? leftWidget,
  5. String text = '',
  6. bool hiddenArrow = false,
  7. Widget? rightWidget,
  8. _ClickCallBack? clickCallBack,
  9. double titleWidth = _titleSpace,
  10. TextStyle titleStyle = _titleStyle,
  11. TextStyle textStyle = _textStyle,
  12. bool hiddenLine = false,
  13. double lineLeftEdge = _lineLeftEdge,
  14. double lineRightEdge = _lineRightEdge,
  15. Color bgColor = _bgColor,
  16. double cellHeight = _cellHeight,
  17. double leftImgWH = _imgWH,
  18. TextAlign textAlign = TextAlign.right,
})

Implementation

const CommonSetCell({
  Key? key,
  this.title = '',
  this.leftImgPath,
  this.leftWidget,
  this.text = '',
  this.hiddenArrow: false,
  this.rightWidget,
  this.clickCallBack,
  this.titleWidth = _titleSpace,
  this.titleStyle = _titleStyle,
  this.textStyle = _textStyle,
  this.hiddenLine = false,
  this.lineLeftEdge = _lineLeftEdge,
  this.lineRightEdge = _lineRightEdge,
  this.bgColor = _bgColor,
  this.cellHeight = _cellHeight,
  this.leftImgWH = _imgWH,
  this.textAlign = TextAlign.right,
}) : super(key: key);