PopModel constructor

PopModel({
  1. required String name,
  2. IconData? icon,
  3. int? id,
})

Implementation

PopModel({
  required this.name,
  this.icon,
  this.id,
});