PhoenixExpandableList constructor

const PhoenixExpandableList({
  1. Key? key,
  2. required ExpendableData expendableData,
  3. EdgeInsetsGeometry? margin,
  4. EdgeInsetsGeometry? contentMargin,
  5. EdgeInsetsGeometry? padding,
  6. EdgeInsetsGeometry? titlePadding,
  7. Color? expandColor,
  8. Color? shrinkColor,
  9. double? radius,
  10. Widget? expandImage,
  11. Widget? shrinkImage,
  12. required bool showData,
  13. required VoidCallback callback,
})

Implementation

const PhoenixExpandableList({
  Key? key,
  required this.expendableData,
  this.margin,
  this.contentMargin,
  this.padding,
  this.titlePadding,
  this.expandColor,
  this.shrinkColor,
  this.radius,
  this.expandImage,
  this.shrinkImage,
  required this.showData,
  required this.callback,
}) : super(key: key);