RecupCategoryCard constructor

const RecupCategoryCard({
  1. String iconImage = '',
  2. String text = '',
  3. Color? color,
  4. String backgroundImage = '',
  5. void onTap()?,
  6. Key? key,
})

Implementation

const RecupCategoryCard({
  this.iconImage = '',
  this.text = '',
  this.color,
  this.backgroundImage = '',
  this.onTap,
  Key? key,
}) : super(key: key);