StatCardGrid constructor

const StatCardGrid({
  1. Key? key,
  2. Widget? hero,
  3. List<Widget> children = const [],
  4. double spacing = 16,
  5. double minTileWidth = 160,
  6. double tileAspectRatio = 1.05,
  7. double heroHeight = 240,
})

Implementation

const StatCardGrid({
  super.key,
  this.hero,
  this.children = const [],
  this.spacing = 16,
  this.minTileWidth = 160,
  this.tileAspectRatio = 1.05,
  this.heroHeight = 240,
});