sharedSecretAsBytes property
Implementation
core.List<core.int> get sharedSecretAsBytes =>
convert.base64.decode(sharedSecret!);
set
sharedSecretAsBytes
( )
Implementation
set sharedSecretAsBytes(core.List<core.int> bytes_) {
sharedSecret = convert.base64
.encode(bytes_)
.replaceAll('/', '_')
.replaceAll('+', '-');
}