TableCell constructor

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

TableCell({super.key, this.verticalAlignment, required Widget child})
  : super(child: Semantics(role: SemanticsRole.cell, child: child));