Clothes constructor
Clothes({
- required ClotheType clotheType,
- required ClotheColor clotheColor,
- required GraphicType graphicType,
Implementation
Clothes({
required this.clotheType,
required this.clotheColor,
required this.graphicType,
});