shareWithMany method

Future<DecryptedTopic> shareWithMany(
  1. DecryptedTopic topic,
  2. Map<String, TopicShareOptions> delegates
)

Implementation

Future<DecryptedTopic> shareWithMany(DecryptedTopic topic, Map<String, TopicShareOptions> delegates) async {
	return await CardinalSdkPlatformInterface.instance.apis.topic.shareWithMany(
		_sdkId,
		topic,
		delegates,
	);
}