shareWith method

Future<DecryptedTimeTable> shareWith(
  1. String delegateId,
  2. DecryptedTimeTable timeTable, {
  3. TimeTableShareOptions? options,
})

Implementation

Future<DecryptedTimeTable> shareWith(String delegateId, DecryptedTimeTable timeTable, { TimeTableShareOptions? options }) async {
	return await CardinalSdkPlatformInterface.instance.apis.timeTable.shareWith(
		_sdkId,
		delegateId,
		timeTable,
		options,
	);
}