createHealthElements method

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

Implementation

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