S360fGridView constructor
const
S360fGridView({
- required S360fGridColSize columns,
- required List<
S360fGridChild> children, - double? colSpacing,
- double? rowSpacing,
- Key? key,
Implementation
const S360fGridView({
required this.columns,
required this.children,
double? colSpacing,
double? rowSpacing,
super.key,
}) : colSpacing = colSpacing ?? 0,
rowSpacing = rowSpacing ?? 0;