next method

AvataaarNose next()

Implementation

AvataaarNose next() {
  final i = toIndex();
  final nextI = (i + 1) >= all.length ? 0 : (i + 1);
  return AvataaarNose.fromIndex(nextI);
}