shareWith method

Future<DecryptedMessage> shareWith(
  1. String delegateId,
  2. DecryptedMessage message, {
  3. MessageShareOptions? options,
})

Implementation

Future<DecryptedMessage> shareWith(String delegateId, DecryptedMessage message, { MessageShareOptions? options }) async {
	return await CardinalSdkPlatformInterface.instance.apis.message.shareWith(
		_sdkId,
		delegateId,
		message,
		options,
	);
}