shareWithMany method

Future<DecryptedTimeTable> shareWithMany(
  1. DecryptedTimeTable timeTable,
  2. Map<String, TimeTableShareOptions> delegates
)

Implementation

Future<DecryptedTimeTable> shareWithMany(DecryptedTimeTable timeTable, Map<String, TimeTableShareOptions> delegates) async {
	return await CardinalSdkPlatformInterface.instance.apis.timeTable.shareWithMany(
		_sdkId,
		timeTable,
		delegates,
	);
}