ResponsiveGrid constructor

const ResponsiveGrid({
  1. required List<Widget> children,
  2. Axis scrollDirection = Axis.vertical,
  3. bool reverse = false,
  4. ScrollController? controller,
  5. bool? primary,
  6. ScrollPhysics? physics,
  7. bool shrinkWrap = false,
  8. int axisSpaces = 2,
  9. Key? key,
})

Implementation

const ResponsiveGrid(
    {required this.children,
    this.scrollDirection = Axis.vertical,
    this.reverse = false,
    this.controller,
    this.primary,
    this.physics,
    this.shrinkWrap = false,
    this.axisSpaces = 2,
    Key? key})
    : super(key: key);