ExpandableListView<T, K> constructor
const
ExpandableListView<T, K> ({
- Key? key,
- required LiveMap<
K, bool> expanded, - required List<
T> items, - required K itemKey(
- T item
- ScrollPhysics? physics,
- bool shrinkWrap = false,
- EdgeInsetsGeometry? padding,
- required ExpandableItemBuilder<
T> itemBuilder,
Implementation
const ExpandableListView({
super.key,
required this.expanded,
required this.items,
required this.itemKey,
this.physics,
this.shrinkWrap = false,
this.padding,
required this.itemBuilder,
});