CUProCard constructor

const CUProCard(
  1. Widget title, {
  2. Key? key,
  3. Widget? subtitle,
  4. Widget? leading,
  5. Widget? trailing,
  6. double padding = 22.5,
  7. double outPadding = 20,
  8. VoidCallback? onTap,
  9. Color? color,
  10. String tip = '',
})

Implementation

const CUProCard(
  this.title, {
  final Key? key,
  this.subtitle,
  this.leading,
  this.trailing,
  this.padding = 22.5,
  this.outPadding = 20,
  this.onTap,
  this.color,
  this.tip = '',
}) : super(key: key);