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