buildTableCell method
- String itemValue
Implementation
Widget buildTableCell(String itemValue) {
return TableCell(
child: Padding(
padding: const EdgeInsets.fromLTRB(8, 24, 4, 14),
child: Text(itemValue,
overflow: TextOverflow.ellipsis,
style: TextStyle(
fontSize: 11.dp,
fontWeight: FontWeight.w400,
color: ColorHelper.black02))));
}