TableCell constructor
- Key? key,
- TableCellVerticalAlignment? verticalAlignment,
- 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));