shareWith method

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

Implementation

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