GridTileBar constructor

const GridTileBar(
  1. {Key? key,
  2. Color? backgroundColor,
  3. Widget? leading,
  4. Widget? title,
  5. Widget? subtitle,
  6. Widget? trailing}
)

Creates a grid tile bar.

Typically used to with GridTile.

Implementation

const GridTileBar({
  super.key,
  this.backgroundColor,
  this.leading,
  this.title,
  this.subtitle,
  this.trailing,
});