getIndexingInfoByGroup method

Future<IndexingInfo> getIndexingInfoByGroup(
  1. String sdkId,
  2. String groupId
)

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);
}