cell method
Implementation
Widget cell(Widget child, [TextStyle? style]) {
return DefaultTextStyle.merge(
style: style,
child: TableCell(
child: Padding(
padding: const EdgeInsets.all(8.0),
child: child,
),
),
);
}