matchServicesBy method

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

Implementation

Future<List<String>> matchServicesBy(String sdkId, BaseFilterOptions<Service> filter) async {
	final res = await _methodChannel.invokeMethod<String>(
		'ContactBasicApi.matchServicesBy',
		{
			"sdkId": sdkId,
			"filter": jsonEncode(BaseFilterOptions.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();
}