Card2 constructor

const Card2({
  1. Key? key,
  2. Widget? child,
  3. Color? color,
  4. double borderRadius = 10,
})

Implementation

const Card2({
  Key? key,
  this.child,
  this.color,
  this.borderRadius = 10,
}) : super(key: key);