MiniGrid constructor

const MiniGrid({
  1. Key? key,
  2. required List<MiniGridItem> items,
  3. int columns = 3,
  4. double spacing = 12,
  5. EdgeInsetsGeometry? padding,
  6. double? maxItemWidth,
  7. double childAspectRatio = 1,
})

Implementation

const MiniGrid({
  super.key,
  required this.items,
  this.columns = 3,
  this.spacing = 12,
  this.padding,
  this.maxItemWidth,
  this.childAspectRatio = 1,
});