ArcaneGridView constructor

const ArcaneGridView({
  1. Key? key,
  2. List<Component> children = const [],
  3. int crossAxisCount = 2,
  4. double gap = 16,
  5. String? padding,
  6. double? minItemWidth,
})

Implementation

const ArcaneGridView({
  super.key,
  this.children = const [],
  this.crossAxisCount = 2,
  this.gap = 16,
  this.padding,
  this.minItemWidth,
})  : builder = null,
      itemCount = null;