getLatestFormByLogicalUuid method

Future<DecryptedForm> getLatestFormByLogicalUuid(
  1. String logicalUuid
)

Implementation

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