ItemModel constructor

ItemModel({
  1. required String imagePath,
  2. required String title,
  3. String? value,
})

Implementation

ItemModel({
  required this.imagePath,
  required this.title,
  this.value,
});