sharedSecret property
Uint8List?
get
sharedSecret
The shared secret for the encrypted channel.
Implementation
Uint8List? get sharedSecret => authData?.sharedSecret != null
? base64Decode(authData!.sharedSecret!)
: null;