Converts this bytes to a List of Uint16.
Uint16
List<int> toListOfUint16() { final byteData = asByteData(); return List<int>.generate(length ~/ 2, (i) => byteData.getUint16(i * 2)); }