BoxId<T>.applyByteArray constructor

BoxId<T>.applyByteArray(
  1. Uint8List bytes
)

Implementation

factory BoxId.applyByteArray(Uint8List bytes) {
  return BoxId(Digest.from(bytes, blake2b256DigestSize));
}