JJSettingCell constructor

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

Implementation

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