Utf32leBytesDecoder constructor
Utf32leBytesDecoder(])
Utf32leBytesDecoder
Implementation
Utf32leBytesDecoder(
List<int> utf32EncodedBytes, [
int offset = 0,
int? length,
bool stripBom = true,
int replacementCodepoint = unicodeReplacementCharacterCodepoint,
]) : super._fromListRangeIterator(
(ListRange(utf32EncodedBytes, offset, length)).iterator,
replacementCodepoint) {
if (stripBom && hasUtf32leBom(utf32EncodedBytes, offset, length)) {
skip();
}
}