getCrc64 function

int getCrc64(
  1. List<int> array, [
  2. int crc = 0
])

Implementation

int getCrc64(List<int> array, [int crc = 0]) {
  return getCrc64_(array, crc);
}