getServices method

Future<List<DecryptedService>> getServices(
  1. String sdkId,
  2. List<String> entityIds
)

Implementation

Future<List<DecryptedService>> getServices(String sdkId, List<String> entityIds) async {
	final res = await _methodChannel.invokeMethod<String>(
		'ContactApi.getServices',
		{
			"sdkId": sdkId,
			"entityIds": jsonEncode(entityIds.map((x0) => x0).toList()),
		}
	);
	if (res == null) throw AssertionError("received null result from platform method getServices");
	final parsedResJson = jsonDecode(res);
	return (parsedResJson as List<dynamic>).map((x1) => DecryptedService.fromJSON(x1) ).toList();
}