BeautyPage constructor

BeautyPage({
  1. required String title,
  2. required List<BeautyItem> items,
})

Implementation

BeautyPage({
  required this.title,
  required this.items,
});