MyIconChoice constructor

MyIconChoice({
  1. int? id,
  2. required IconData icon,
  3. required String title,
  4. required String imagePath,
})

Implementation

MyIconChoice({
  this.id,
  required this.icon,
  required this.title,
  required this.imagePath
});