shareWithMany method

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

Implementation

Future<Topic> shareWithMany(String sdkId, Topic topic, Map<String, TopicShareOptions> delegates) async {
	final res = await _methodChannel.invokeMethod<String>(
		'TopicApi.tryAndRecover.shareWithMany',
		{
			"sdkId": sdkId,
			"topic": jsonEncode(Topic.encode(topic)),
			"delegates": jsonEncode(delegates.map((k0, v0) => MapEntry(k0, TopicShareOptions.encode(v0)))),
		}
	);
	if (res == null) throw AssertionError("received null result from platform method shareWithMany");
	final parsedResJson = jsonDecode(res);
	return Topic.fromJSON(parsedResJson);
}