calcCrc function

int calcCrc(
  1. Uint8List data
)

Implementation

int calcCrc(Uint8List data) {
  return getCrc32(data);
}