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

Creates a grid tile.

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

Source

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