undeleteFormById method

Future<EncryptedForm> undeleteFormById(
  1. String id,
  2. String rev
)

Implementation

Future<EncryptedForm> undeleteFormById(String id, String rev) async {
	return await CardinalSdkPlatformInterface.instance.apis.form.encrypted.undeleteFormById(
		_sdkId,
		id,
		rev,
	);
}