ExpandableListView<T, K> constructor

const ExpandableListView<T, K>({
  1. Key? key,
  2. required LiveMap<K, bool> expanded,
  3. required List<T> items,
  4. required K itemKey(
    1. T item
    ),
  5. ScrollPhysics? physics,
  6. bool shrinkWrap = false,
  7. EdgeInsetsGeometry? padding,
  8. 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,
});