Converts this bytes to a List of Int32.
Int32
List<int> toListOfInt32() { final byteData = asByteData(); return List<int>.generate(length ~/ 4, (i) => byteData.getInt32(i * 4)); }