BeautyItem constructor

BeautyItem({
  1. required BeautyType type,
  2. required dynamic value,
  3. required String title,
  4. required String iconPath,
  5. PFBeautyFiterType? beautyType,
  6. String? filterName,
})

Implementation

BeautyItem({
  required this.type,
  required this.value,
  required this.title,
  required this.iconPath,
  this.beautyType,
  this.filterName,
});