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]) {
  var stringLength = string.length;
  end = RangeError.checkValidRange(start, end, stringLength);
  var length = end - start;
  var result = Uint8List(length);
  for (var i = 0; i < length; i++) {
    var codeUnit = string.codeUnitAt(start + i);
    if ((codeUnit & ~_subsetMask) != 0) {
      throw ArgumentError.value(
          string, "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.dart.dev/stable/2.5.0/dart-convert/AsciiEncoder/convert.html