CardEx constructor

const CardEx({
  1. Key? key,
  2. required Widget child,
  3. EdgeInsets? margin,
  4. EdgeInsets? padding,
  5. bool shadow = false,
  6. num? width,
  7. num? height,
  8. String? title,
  9. num? space,
  10. Widget? right,
  11. String subTitle = "",
  12. Widget? left,
  13. Widget? center,
  14. Color? backgroundColor,
  15. Color? titleColor,
  16. Color? subTitleColor,
  17. Color? textColor,
  18. Brightness? brightness,
  19. Gradient? gradient,
  20. num? paddingSize,
  21. num? marginSize,
  22. Color? shadowColor,
  23. required bool isChild,
  24. num? elevation,
  25. Clip? clipBehavior,
  26. bool semanticContainer = true,
  27. bool borderOnForeground = true,
  28. ShapeBorder? shape,
})

Implementation

const CardEx({
  Key? key,
  required this.child,
  this.margin,
  this.padding,
  this.shadow = false,
  this.width,
  this.height,
  this.title,
  this.space,
  this.right,
  this.subTitle = "",
  this.left,
  this.center,
  this.backgroundColor,
  this.titleColor,
  this.subTitleColor,
  this.textColor,
  this.brightness,
  this.gradient,
  this.paddingSize,
  this.marginSize,
  this.shadowColor,
  required this.isChild,
  this.elevation,
  this.clipBehavior,
  this.semanticContainer = true,
  this.borderOnForeground = true,
  this.shape,
}) : super(key: key);