matchServicesBy method

Future<List<String>> matchServicesBy(
  1. String sdkId,
  2. FilterOptions<Service> filter
)

Implementation

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