BeautyItem constructor

BeautyItem({
  1. required String title,
  2. required String icon,
  3. required BeautyItemType type,
})

Implementation

BeautyItem({
  required this.title,
  required this.icon,
  required this.type,
});