ZeroGrid constructor
const
ZeroGrid({
- Key? key,
- int columnCount = 4,
- double crossAxisSpacing = 4,
- double mainAxisSpacing = 4,
- List<
ZeroGridItem> children = const [], - 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),
});