shareWith method

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

Implementation

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