Converts the String into a list of its code units.
If start
and end
are provided, only the substring string.substring(start, end)
is used as input to the conversion.
Uint8List convert(String string, [int start = 0, int end]) { int stringLength = string.length; RangeError.checkValidRange(start, end, stringLength); if (end == null) end = stringLength; int length = end - start; var result = new Uint8List(length); for (int i = 0; i < length; i++) { var codeUnit = string.codeUnitAt(start + i); if ((codeUnit & ~_subsetMask) != 0) { throw new ArgumentError("String contains invalid characters."); } result[i] = codeUnit; } return result; }
© 2012 the Dart project authors
Licensed under the Creative Commons Attribution-ShareAlike License v4.0.
https://api.dartlang.org/stable/2.0.0/dart-convert/Latin1Encoder/convert.html