iterableRunes property

Iterable<String> iterableRunes

Returns an iterable that returns every character in this string, split along rune boundaries.

This iterable will respect the boundaries between elements that form surrogate pairs.

Implementation

Iterable<String> get iterableRunes {
  return runes.map((r) => String.fromCharCode(r));
}