BadExpandable constructor

const BadExpandable({
  1. Key? key,
  2. bool initialOpen = true,
  3. ValueChanged<bool>? onChanged,
  4. double gap = 0,
  5. required Widget headerBuilder(
    1. bool open
    ),
  6. required Widget child,
})

Implementation

const BadExpandable({
  super.key,
  this.initialOpen = true,
  this.onChanged,
  this.gap = 0,
  required this.headerBuilder,
  required this.child,
});