update method

  1. @override
Hash update(
  1. List<int> data
)
override

Updates the hash computation with the given data.

Parameters:

  • data: Containing the data to be hashed.

Implementation

@override
Hash update(List<int> data) {
  _inner.update(data);
  return this;
}