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