FolderStack constructor

const FolderStack({
  1. Key? key,
  2. required List<String> upperItems,
  3. required List<Widget> children,
  4. ValueChanged<FoldStatus>? onFolderStateChange,
  5. VerticalDirection verticalDirection = VerticalDirection.down,
  6. AlignmentGeometry alignment = AlignmentDirectional.topStart,
  7. TextDirection? textDirection,
  8. StackFit fit = StackFit.loose,
  9. Clip clipBehavior = Clip.hardEdge,
})

Implementation

const FolderStack({
  super.key,
  required this.upperItems,
  required this.children,
  this.onFolderStateChange,
  this.verticalDirection = VerticalDirection.down,
  this.alignment = AlignmentDirectional.topStart,
  this.textDirection,
  this.fit = StackFit.loose,
  this.clipBehavior = Clip.hardEdge,
});