CardEx constructor
const
CardEx({
- Key? key,
- required Widget child,
- EdgeInsets? margin,
- EdgeInsets? padding,
- bool shadow = false,
- num? width,
- num? height,
- String? title,
- num? space,
- Widget? right,
- String subTitle = "",
- Widget? left,
- Widget? center,
- Color? backgroundColor,
- Color? titleColor,
- Color? subTitleColor,
- Color? textColor,
- Brightness? brightness,
- Gradient? gradient,
- num? paddingSize,
- num? marginSize,
- Color? shadowColor,
- required bool isChild,
- num? elevation,
- Clip? clipBehavior,
- bool semanticContainer = true,
- bool borderOnForeground = true,
- 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);