update method

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

Updates the hash computation with the given data.

Parameters:

  • data: Containing the data to be hashed.

Implementation

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