TableCell constructor

const TableCell({Key key, TableCellVerticalAlignment verticalAlignment, @required Widget child })

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

Implementation

const TableCell({
  Key key,
  this.verticalAlignment,
  @required Widget child
}) : super(key: key, child: child);