shareWith method

Future<EncryptedTopic> shareWith(
  1. String delegateId,
  2. EncryptedTopic topic, {
  3. TopicShareOptions? options,
})

Implementation

Future<EncryptedTopic> shareWith(String delegateId, EncryptedTopic topic, { TopicShareOptions? options }) async {
	return await CardinalSdkPlatformInterface.instance.apis.topic.encrypted.shareWith(
		_sdkId,
		delegateId,
		topic,
		options,
	);
}