NsgGrid constructor

const NsgGrid({
  1. Key? key,
  2. required List<Widget> children,
  3. int crossAxisCount = 3,
  4. bool centered = true,
  5. double vGap = 0,
  6. double hGap = 0,
  7. bool needExpanded = true,
  8. double? width,
})

Implementation

const NsgGrid(
    {Key? key, required this.children, this.crossAxisCount = 3, this.centered = true, this.vGap = 0, this.hGap = 0, this.needExpanded = true, this.width})
    : super(key: key);