ExpansionPanelWidget constructor

const ExpansionPanelWidget({
  1. Key? key,
  2. required Widget header,
  3. required Widget body,
  4. double iconRight = 30,
  5. Color iconColor = const Color(0xe6b5b5b5),
  6. ExpansionPanelController? controller,
})

Implementation

const ExpansionPanelWidget({
  Key? key,
  required this.header,
  required this.body,
  this.iconRight = 30,
  this.iconColor = const Color(0xe6b5b5b5),
  this.controller,
}) : super(key: key);