getLatestFormByLogicalUuid method

Future<Form> getLatestFormByLogicalUuid(
  1. String logicalUuid
)

Implementation

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