ModulaGrid constructor

const ModulaGrid({
  1. required List<Widget> children,
  2. Key? key,
  3. double spacing = 16.0,
  4. int columns = 12,
})

Implementation

const ModulaGrid({
  required this.children,
  super.key,
  this.spacing = 16.0,
  this.columns = 12,
});