toListOfInt64 method

List<int> toListOfInt64()

Converts this bytes to a List of Int64.

Implementation

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