BeautyItem.filter constructor
Implementation
factory BeautyItem.filter(String filterName, double value, String title, String iconPath) {
return BeautyItem(
type: BeautyType.filter,
value: value,
title: title,
iconPath: iconPath,
filterName: filterName,
);
}