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