undeleteTimeTableById method

Future<DecryptedTimeTable> undeleteTimeTableById(
  1. String id,
  2. String rev
)

Implementation

Future<DecryptedTimeTable> undeleteTimeTableById(String id, String rev) async {
	return await CardinalSdkPlatformInterface.instance.apis.timeTable.undeleteTimeTableById(
		_sdkId,
		id,
		rev,
	);
}