CommonSetCell constructor
const
CommonSetCell({
- Key? key,
- String title = '',
- String? leftImgPath,
- Widget? leftWidget,
- String text = '',
- Widget? rightWidget,
- _ClickCallBack? clickCallBack,
- double titleWidth = _titleSpace,
- TextStyle titleStyle = _titleStyle,
- TextStyle textStyle = _textStyle,
- double lineLeftEdge = _lineLeftEdge,
- double lineRightEdge = _lineRightEdge,
- Color bgColor = _bgColor,
- double cellHeight = _cellHeight,
- double leftImgWH = _imgWH,
- 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);