convert method
override
Converts the UTF-8 codeUnits
(a list of unsigned 8-bit integers) to the corresponding string.
Uses the code units from start
to, but no including, end
. If end
is omitted, it defaults to codeUnits.length
.
If the codeUnits
start with the encoding of a unicodeBomCharacterRune, that character is discarded.
Implementation
String convert(List<int> codeUnits, [int start = 0, int? end]) { // Allow the implementation to intercept and specialize based on the type // of codeUnits. var result = _convertIntercepted(_allowMalformed, codeUnits, start, end); if (result != null) { return result; } return _Utf8Decoder(_allowMalformed).convertSingle(codeUnits, start, end); }
© 2012 the Dart project authors
Licensed under the Creative Commons Attribution-ShareAlike License v4.0.
https://api.dart.dev/stable/2.13.0/dart-convert/Utf8Decoder/convert.html