shareWithMany method

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

Implementation

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