GridTileModifier constructor

const GridTileModifier({
  1. Key? key,
  2. Widget? child,
  3. Key? modifierKey,
  4. Widget? header,
  5. Widget? footer,
})

Creates a grid tile.

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

Implementation

const GridTileModifier({
  super.key,
  super.child,
  super.modifierKey,
  this.header,
  this.footer,
});