purgeHealthElement method

Future<void> purgeHealthElement(
  1. String sdkId,
  2. HealthElement healthElement
)

Implementation

Future<void> purgeHealthElement(String sdkId, HealthElement healthElement) async {
	final res = await _methodChannel.invokeMethod<String>(
		'HealthElementApi.purgeHealthElement',
		{
			"sdkId": sdkId,
			"healthElement": jsonEncode(HealthElement.encode(healthElement)),
		}
	);
}