undeleteDocumentById method

Future<EncryptedDocument> undeleteDocumentById(
  1. String id,
  2. String rev
)

Implementation

Future<EncryptedDocument> undeleteDocumentById(String id, String rev) async {
	return await CardinalSdkPlatformInterface.instance.apis.documentBasic.undeleteDocumentById(
		_sdkId,
		id,
		rev,
	);
}