add method

void add(
  1. List<int> data
)

Implementation

void add(List<int> data) {
  _hash = getCrc32(data, _hash);
}