bytes property

  1. @override
Uint8List bytes
inherited

Access the underlying bytes of the hash value.

This is the default way to access the content of this hash value.

This returns an unmodifiable version of this hash value, if you want to modify the bytes, use hash.buffer.asUint8List();

Implementation

@override
Uint8List get bytes => _content;