getIndexingInfoByGroup method
Implementation
Future<IndexingInfo> getIndexingInfoByGroup(String sdkId, String groupId) async {
final res = await _methodChannel.invokeMethod<String>(
'SystemApi.getIndexingInfoByGroup',
{
"sdkId": sdkId,
"groupId": jsonEncode(groupId),
}
);
if (res == null) throw AssertionError("received null result from platform method getIndexingInfoByGroup");
final parsedResJson = jsonDecode(res);
return IndexingInfo.fromJSON(parsedResJson);
}