HubbleExpandable constructor

const HubbleExpandable({
  1. Key? key,
  2. required Widget titleBuilder(
    1. BuildContext context,
    2. bool isExpanded
    ),
  3. required Widget bodyBuilder(
    1. BuildContext context,
    2. bool isExpanded
    ),
  4. Color? color,
  5. Color? expandedColor,
  6. Color? borderColor,
  7. ValueChanged<bool>? onChange,
})

Implementation

const HubbleExpandable({
  super.key,
  required this.titleBuilder,
  required this.bodyBuilder,
  this.color,
  this.expandedColor,
  this.borderColor,
  this.onChange,
});