CUCard constructor

const CUCard(
  1. Widget child, {
  2. Key? key,
  3. double padding = 10,
  4. double outPadding = 20,
  5. VoidCallback? onTap,
  6. Color? color,
  7. String tip = '',
})

Implementation

const CUCard(this.child,
    {Key? key, this.padding = 10, this.outPadding = 20, this.onTap, this.color, this.tip = ''})
    : super(key: key);