ZeroGrid constructor

const ZeroGrid({
  1. Key? key,
  2. int columnCount = 4,
  3. double crossAxisSpacing = 4,
  4. double mainAxisSpacing = 4,
  5. List<ZeroGridItem> children = const [],
  6. EdgeInsets padding = const EdgeInsets.all(0),
})

Implementation

const ZeroGrid({
  super.key,
  this.columnCount = 4,
  this.crossAxisSpacing = 4,
  this.mainAxisSpacing = 4,
  this.children = const [],
  this.padding = const EdgeInsets.all(0),
});