GridViewParams constructor

GridViewParams({
  1. int? crossAxisCount,
  2. Axis? scrollDirection,
  3. bool? reverse,
  4. bool? shrinkWrap,
  5. double? cacheExtent,
  6. EdgeInsetsGeometry? padding,
  7. double? mainAxisSpacing,
  8. double? crossAxisSpacing,
  9. double? childAspectRatio,
  10. List<Widget?>? children,
  11. int? pageSize,
  12. String? loadMoreUrl,
  13. bool? isDemo,
})

Implementation

GridViewParams(
    {this.crossAxisCount,
    this.scrollDirection,
    this.reverse,
    this.shrinkWrap,
    this.cacheExtent,
    this.padding,
    this.mainAxisSpacing,
    this.crossAxisSpacing,
    this.childAspectRatio,
    this.children,
    this.pageSize,
    this.loadMoreUrl,
    this.isDemo});