Clothes constructor

Clothes({
  1. required ClotheType clotheType,
  2. required ClotheColor clotheColor,
  3. required GraphicType graphicType,
})

Implementation

Clothes({
  required this.clotheType,
  required this.clotheColor,
  required this.graphicType,
});