tryDecrypt method

Future<TimeTable> tryDecrypt(
  1. EncryptedTimeTable timeTable
)

Implementation

Future<TimeTable> tryDecrypt(EncryptedTimeTable timeTable) async {
	return await CardinalSdkPlatformInterface.instance.apis.timeTable.tryDecrypt(
		_sdkId,
		timeTable,
	);
}