undeleteDocumentById method

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

Implementation

Future<EncryptedDocument> undeleteDocumentById(String sdkId, String id, String rev) async {
	final res = await _methodChannel.invokeMethod<String>(
		'DocumentBasicApi.undeleteDocumentById',
		{
			"sdkId": sdkId,
			"id": jsonEncode(id),
			"rev": jsonEncode(rev),
		}
	);
	if (res == null) throw AssertionError("received null result from platform method undeleteDocumentById");
	final parsedResJson = jsonDecode(res);
	return EncryptedDocument.fromJSON(parsedResJson);
}