undeleteTimeTableById method

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

Implementation

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