undeleteFormById method

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

Implementation

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