BeautyItem.filter constructor

BeautyItem.filter(
  1. String filterName,
  2. double value,
  3. String title,
  4. String iconPath,
)

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,
  );
}