next method
Advance the iterator by one and return the next range.
If the iterator is out of items, done
will be true
Implementation
CodePointRangeIteratorResult next() {
final result = _icu4x_CodePointRangeIterator_next_mv1(_ffi);
return CodePointRangeIteratorResult._fromFfi(result);
}