ToolsLayoutParams constructor

const ToolsLayoutParams({
  1. required int crossAxisCount,
  2. double mainAxisSpacing = 0.0,
  3. double crossAxisSpacing = 0.0,
  4. double childAspectRatio = 1.0,
  5. bool? shrinkWrap = true,
  6. double? mainAxisExtent,
  7. double? cacheExtent,
  8. EdgeInsetsGeometry? padding,
})

Implementation

const ToolsLayoutParams(
    {required this.crossAxisCount,
    this.mainAxisSpacing = 0.0,
    this.crossAxisSpacing = 0.0,
    this.childAspectRatio = 1.0,
    this.shrinkWrap = true,
    this.mainAxisExtent,
    this.cacheExtent,
    this.padding});