ArcaneIndexedStack constructor

const ArcaneIndexedStack({
  1. required int index,
  2. required List<Component> children,
  3. bool lazy = false,
  4. Key? key,
})

Implementation

const ArcaneIndexedStack({
  required this.index,
  required this.children,
  this.lazy = false,
  super.key,
});