HubbleExpandable constructor
const
HubbleExpandable({
- Key? key,
- required Widget titleBuilder(
- BuildContext context,
- bool isExpanded
- required Widget bodyBuilder(
- BuildContext context,
- bool isExpanded
- Color? color,
- Color? expandedColor,
- Color? borderColor,
- ValueChanged<
bool> ? onChange,
Implementation
const HubbleExpandable({
super.key,
required this.titleBuilder,
required this.bodyBuilder,
this.color,
this.expandedColor,
this.borderColor,
this.onChange,
});