CipherKey.fromHex constructor

CipherKey.fromHex(
  1. String key
)

Implementation

factory CipherKey.fromHex(String key) {
  return CipherKey._(hex.decode(key));
}