CustomCollapseForm constructor

const CustomCollapseForm({
  1. required List<Widget> children,
  2. Key? key,
  3. bool expanded = true,
  4. ValueChanged<bool>? onExpandChanged,
  5. int showCount = 1,
  6. List<Widget>? actions,
})

实例

Implementation

const CustomCollapseForm({
  required this.children,
  super.key,
  this.expanded = true,
  this.onExpandChanged,
  this.showCount = 1,
  this.actions,
});