ArcaneListView constructor

const ArcaneListView({
  1. Key? key,
  2. List<Component> children = const [],
  3. double gap = 0,
  4. String? padding,
  5. bool horizontal = false,
})

Implementation

const ArcaneListView({
  super.key,
  this.children = const [],
  this.gap = 0,
  this.padding,
  this.horizontal = false,
})  : builder = null,
      itemCount = null;