previous method
Implementation
AvataaarGraphics previous() {
final i = toIndex();
final nextI = (i - 1) < 0 ? (all.length - 1) : (i - 1);
return AvataaarGraphics.fromIndex(nextI);
}
AvataaarGraphics previous() {
final i = toIndex();
final nextI = (i - 1) < 0 ? (all.length - 1) : (i - 1);
return AvataaarGraphics.fromIndex(nextI);
}