cell method

Widget cell(
  1. Widget child, [
  2. TextStyle? style
])

Implementation

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