getLatestFormByLogicalUuid method

Future<EncryptedForm> getLatestFormByLogicalUuid(
  1. String logicalUuid
)

Implementation

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