DataHelper constructor

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

Implementation

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