CxCard constructor

const CxCard({
  1. Key? key,
  2. double? radius,
  3. EdgeInsetsGeometry? margin,
  4. bool? shadow,
  5. BoxShadow? boxShadow,
  6. Color? shadowColor,
  7. String? title,
  8. Color? titleColor,
  9. String? subtitle,
  10. Color? subtitleColor,
  11. double? titleSize,
  12. double? subtitleSize,
  13. Widget? titleWidget,
  14. Widget? foot,
  15. required Widget body,
  16. List<Widget>? actions,
  17. Color? bgColor,
  18. double? minHeight,
  19. Widget? footWidget,
  20. Color? hdBgColor,
  21. EdgeInsetsGeometry? hdPadding,
  22. bool? hdSplit,
  23. Color? hdSplitColor,
  24. double? hdSplitHeight,
  25. EdgeInsetsGeometry? hdSplitMargin,
  26. Widget? hdSplitWidget,
})

Implementation

const CxCard({
  super.key,
  this.radius,
  this.margin,
  this.shadow,
  this.boxShadow,
  this.shadowColor,
  this.title,
  this.titleColor,
  this.subtitle,
  this.subtitleColor,
  this.titleSize,
  this.subtitleSize,
  this.titleWidget,
  this.foot,
  required this.body,
  this.actions,
  this.bgColor,
  this.minHeight,
  this.footWidget,
  this.hdBgColor,
  this.hdPadding,
  //
  this.hdSplit,
  this.hdSplitColor,
  this.hdSplitHeight,
  this.hdSplitMargin,
  this.hdSplitWidget,
});