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