getHealthElement method

Future<HealthElement> getHealthElement(
  1. String sdkId,
  2. String entityId
)

Implementation

Future<HealthElement> getHealthElement(String sdkId, String entityId) async {
	final res = await _methodChannel.invokeMethod<String>(
		'HealthElementApi.tryAndRecover.getHealthElement',
		{
			"sdkId": sdkId,
			"entityId": jsonEncode(entityId),
		}
	);
	if (res == null) throw AssertionError("received null result from platform method getHealthElement");
	final parsedResJson = jsonDecode(res);
	return HealthElement.fromJSON(parsedResJson);
}