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