ResponsiveGrid constructor

const ResponsiveGrid({
  1. Key? key,
  2. List<ResponsiveGridItem> children = const <ResponsiveGridItem>[],
  3. double? gridSpacing,
})

Implementation

const ResponsiveGrid(
    {Key? key,
    this.children = const <ResponsiveGridItem>[],
    this.gridSpacing})
    : super(key: key);