blake2bHash static method

String blake2bHash(
  1. String text, {
  2. int bytes = 64,
})

Implementation

static String blake2bHash(String text, {int bytes = 64}) => _toHex(_blake2b(_u8(text), bytes));