createHealthElements method

Future<List<DecryptedHealthElement>> createHealthElements(
  1. List<DecryptedHealthElement> entities
)

Implementation

Future<List<DecryptedHealthElement>> createHealthElements(List<DecryptedHealthElement> entities) async {
	return await CardinalSdkPlatformInterface.instance.apis.healthElement.createHealthElements(
		_sdkId,
		entities,
	);
}