BothSideTextCell constructor
const
BothSideTextCell({
- Key? key,
- double space = 12,
- EdgeInsetsGeometry padding = const EdgeInsets.all(0),
- String title = '',
- String content = '',
- TextStyle titleStyle = const TextStyle(color: Color(0xFF777777), fontSize: 14, fontWeight: FontWeight.normal),
- TextStyle contentStyle = const TextStyle(color: Color(0xFF777777), fontSize: 14, fontWeight: FontWeight.normal),
- int titleMaxLines = 1,
- int contentMaxLines = 1,
- bool canTitleExpanded = true,
- Color dividerColor = Colors.transparent,
Implementation
const BothSideTextCell({
Key? key,
this.space = 12,
this.padding = const EdgeInsets.all(0),
this.title = '',
this.content = '',
this.titleStyle = const TextStyle(color: Color(0xFF777777), fontSize: 14, fontWeight: FontWeight.normal),
this.contentStyle = const TextStyle(color: Color(0xFF777777), fontSize: 14, fontWeight: FontWeight.normal),
this.titleMaxLines = 1,
this.contentMaxLines = 1,
this.canTitleExpanded = true,
this.dividerColor = Colors.transparent,
}) : super(key: key);