getSharedSecret method
Implementation
@override
Future<Uint8List> getSharedSecret(String tag, Uint8List publicKey) async {
final result = await methodChannel.invokeMethod(
Methods.getSharedSecret,
{'tag': tag, 'publicKey': publicKey},
);
return result;
}