DataHelper constructor

DataHelper({
  1. String? title,
  2. String? desc,
  3. Widget? badge,
  4. bool isSelected = false,
  5. String? iconPath,
  6. IconData? icon,
  7. String? url,
  8. String? type,
  9. int? id,
  10. VoidCallback? onPressed,
  11. bool isVisible = true,
  12. Color? color,
})

Implementation

DataHelper({
  this.title,
  this.desc,
  this.badge,
  this.isSelected = false,
  this.iconPath,
  this.icon,
  this.url,
  this.type,
  this.id,
  this.onPressed,
  this.isVisible = true,
  this.color,
});