shareWith method

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

Implementation

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