MyBaseCard constructor

MyBaseCard({
  1. Key? key,
  2. Widget? child,
  3. num radius = 8.0,
  4. double elevation = 0.25,
  5. Color color = Colors.white,
})

Implementation

MyBaseCard(
    {Key? key,
    this.child,
    this.radius = 8.0,
    this.elevation = 0.25,
    this.color = Colors.white})
    : super(key: key);