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