TableCell constructor

const TableCell({
  1. Key? key,
  2. TableCellVerticalAlignment? verticalAlignment,
  3. required Widget child,
})

Creates a widget that controls how a child of a Table is aligned.

Implementation

const TableCell({
  super.key,
  this.verticalAlignment,
  required super.child,
});