currentSize property - RuneIterator class - dart:core library (original) (raw)

description

int getcurrentSize

The number of code units comprising the current rune.

Returns zero if there is no current rune (current is -1).

Implementation

int get currentSize => _nextPosition - _position;