previous method
Implementation
AvataaarHair previous([Color? color]) {
final i = toIndex();
final nextI = (i - 1) < 0 ? (all.length - 1) : (i - 1);
final e = AvataaarHair.fromIndex(nextI);
if (color != null) {
return e.copyWith(color: color);
}
return e;
}