CommonCard constructor

const CommonCard({
  1. Key? key,
  2. Widget? child,
  3. BorderRadius? radius,
  4. double elevation = 2,
  5. Color? borderColor,
})

Implementation

const CommonCard({
  super.key,
  this.child,
  this.radius,
  this.elevation = 2,
  this.borderColor,
});