CipherKey.fromUtf8 constructor

CipherKey.fromUtf8(
  1. String key
)

Implementation

factory CipherKey.fromUtf8(String key) {
  return CipherKey._(utf8.encode(key));
}