matchCodesBy method

Future<List<String>> matchCodesBy(
  1. String sdkId,
  2. BaseFilterOptions<Code> filter
)

Implementation

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