SeoGridView constructor

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

Creates a SeoGridView.

Implementation

const SeoGridView({
  super.key,
  required this.gridDelegate,
  required this.children,
  this.scrollDirection = Axis.vertical,
  this.reverse = false,
  this.controller,
  this.primary,
  this.physics,
  this.padding,
  this.shrinkWrap = false,
});