random property

Clothes random

Get random Clothes

Implementation

static Clothes get random {
  return Clothes(
    clotheType: randomPiece(ClotheType.values),
    clotheColor: randomPiece(ClotheColor.values),
    graphicType: randomPiece(GraphicType.values),
  );
}