GridTile constructor

const GridTile({Key key, Widget header, Widget footer, @required Widget child })

Creates a grid tile.

Must have a child. Does not typically have both a header and a footer.

Implementation

const GridTile({
  Key key,
  this.header,
  this.footer,
  @required this.child,
}) : assert(child != null),
     super(key: key);