WCard constructor
const
WCard({
- Key? key,
- required Widget child,
- String? className,
- EdgeInsetsGeometry? padding,
- EdgeInsetsGeometry? margin,
- Color? backgroundColor,
- List<
BoxShadow> ? boxShadow, - BorderRadius? borderRadius,
- VoidCallback? onTap,
- Border? border,
- Clip clipBehavior = Clip.none,
Implementation
const WCard({
super.key,
required this.child,
this.className,
this.padding,
this.margin,
this.backgroundColor,
this.boxShadow,
this.borderRadius,
this.onTap,
this.border,
this.clipBehavior = Clip.none,
});