WCard constructor

const WCard({
  1. Key? key,
  2. required Widget child,
  3. String? className,
  4. EdgeInsetsGeometry? padding,
  5. EdgeInsetsGeometry? margin,
  6. Color? backgroundColor,
  7. List<BoxShadow>? boxShadow,
  8. BorderRadius? borderRadius,
  9. VoidCallback? onTap,
  10. Border? border,
  11. 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,
});