AvataaarClothes.random constructor

AvataaarClothes.random([
  1. Color? color
])

creates random AvataaarClothes

Implementation

factory AvataaarClothes.random([Color? color]) {
  final e =
      AvataaarClothes.fromIndex(_random.nextInt(AvataaarClothes.all.length));

  if (color != null) {
    return e.copyWith(color: color);
  }
  return e;
}