An Iterator of code units of this String represented as individual Strings
@pragma("vm:prefer-inline") Iter<String> chars() { return Iter.fromIterable(codeUnits.map((e) => String.fromCharCode(e))); }