convert 方法
override
将 UTF-8 的 codeUnits
(一个无符号 8 位整数列表)转换为相应的字符串。
使用从 start
到(但不包括)end
的代码单元。如果省略 end
,则默认为 codeUnits.length
。
如果 codeUnits
以 unicodeBomCharacterRune 的编码开始,则该字符将被丢弃。
实现
String convert(List<int> codeUnits, [int start = 0, int? end]) =>
_Utf8Decoder(_allowMalformed).convertSingle(codeUnits, start, end);