AtomCard constructor

const AtomCard({
  1. Key? key,
  2. required Widget child,
  3. Color? color,
  4. double? elevation,
  5. ShapeBorder? shape,
  6. EdgeInsetsGeometry? margin,
  7. Clip? clipBehavior,
  8. Color? shadowColor,
  9. bool? borderOnForeground,
})

Implementation

const AtomCard({
  super.key,
  required this.child,
  this.color,
  this.elevation,
  this.shape,
  this.margin,
  this.clipBehavior,
  this.shadowColor,
  this.borderOnForeground,
});