Converts this bytes to a List of Int64.
Int64
List<int> toListOfInt64() { return List<int>.generate( length ~/ 8, (i) => _platform.readInt64(this, i * 8)); }