SummerRowExpandable constructor

const SummerRowExpandable({
  1. required Set<Object?> expandedKeys,
  2. required Widget builder(
    1. BuildContext context,
    2. int rowIndex
    ),
  3. ValueChanged<Set<Object?>>? onChanged,
  4. Widget? expandIcon,
  5. Widget? collapseIcon,
  6. double columnWidth = 40.0,
})

Implementation

const SummerRowExpandable({
  required this.expandedKeys,
  required this.builder,
  this.onChanged,
  this.expandIcon,
  this.collapseIcon,
  this.columnWidth = 40.0,
});