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