matchHealthElementsBy method

Future<List<String>> matchHealthElementsBy(
  1. String sdkId,
  2. FilterOptions<HealthElement> filter
)

Implementation

Future<List<String>> matchHealthElementsBy(String sdkId, FilterOptions<HealthElement> filter) async {
	final res = await _methodChannel.invokeMethod<String>(
		'HealthElementApi.matchHealthElementsBy',
		{
			"sdkId": sdkId,
			"filter": jsonEncode(FilterOptions.encode(filter)),
		}
	);
	if (res == null) throw AssertionError("received null result from platform method matchHealthElementsBy");
	final parsedResJson = jsonDecode(res);
	return (parsedResJson as List<dynamic>).map((x1) => (x1 as String) ).toList();
}