ResponsiveGrid constructor

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

Constructs a ResponsiveGrid widget with the given number of columns, spacing, and children.

Implementation

const ResponsiveGrid({
  Key? key,
  required this.columns,
  required this.spacing,
  required this.children,
}) : super(key: key);