NGACard constructor

const NGACard(
  1. Widget child, {
  2. Key? key,
  3. double radius = 24,
  4. double padding = 16,
  5. double outPadding = 0,
  6. int alpha = 22,
  7. bool useWhite = false,
  8. bool isAllPadding = true,
  9. VoidCallback? onTap,
  10. String tip = '',
})

Implementation

const NGACard(
  this.child, {
  final Key? key,
  this.radius = 24,
  this.padding = 16,
  this.outPadding = 0,
  this.alpha = 22,
  this.useWhite = false,
  this.isAllPadding = true,
  this.onTap,
  this.tip = '',
}) : super(key: key);