CardBackground constructor

const CardBackground({
  1. Key? key,
  2. required Widget child,
  3. EdgeInsetsGeometry? margin,
})

Implementation

const CardBackground({Key? key, required this.child, this.margin})
    : super(key: key);