getSessionKey method
Implementation
String getSessionKey() {
Codec<String, String> stringToBase64 = utf8.fuse(base64);
return "${ stringToBase64.encode(this.key)}##${ stringToBase64.encode(this.iv)}";
}
String getSessionKey() {
Codec<String, String> stringToBase64 = utf8.fuse(base64);
return "${ stringToBase64.encode(this.key)}##${ stringToBase64.encode(this.iv)}";
}