convertArrayBufferToString function
Implementation
convertArrayBufferToString(Uint8List buffer, [int? from, int? to]) {
from ??= 0;
to ??= buffer.lengthInBytes;
var str = LoaderUtils.decodeText(Uint8List.view(buffer.buffer, from, to).toList());
return str;
}