ResponsiveGrid constructor
const
ResponsiveGrid({})
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);