S360fGridView constructor

const S360fGridView({
  1. required S360fGridColSize columns,
  2. required List<S360fGridChild> children,
  3. double? colSpacing,
  4. double? rowSpacing,
  5. Key? key,
})

Implementation

const S360fGridView({
  required this.columns,
  required this.children,
  double? colSpacing,
  double? rowSpacing,
  super.key,
}) : colSpacing = colSpacing ?? 0,
     rowSpacing = rowSpacing ?? 0;