CipherKey.fromBase64 constructor

CipherKey.fromBase64(
  1. String key
)

Implementation

factory CipherKey.fromBase64(String key) {
  return CipherKey._(base64.decode(key).toList());
}